Search found 4 matches

by MoustachedBird
Sun Jun 28, 2020 5:56 am
Forum: General Discussion
Topic: Using an Arduino's library in ESP IDF or maybe getting a similar library ???
Replies: 0
Views: 1855

Using an Arduino's library in ESP IDF or maybe getting a similar library ???

Sorry guys, do you know if it's possible to include arduino's libraries in ESP IDF (i've read something about arduino as component but i'm not sure about how to use it...). I was looking for including this one (MySQL_Connector): https://github.com/ChuckBell/MySQL_Connector_Arduino It is used to stor...
by MoustachedBird
Sat Jun 20, 2020 8:10 pm
Forum: General Discussion
Topic: Starting with SQL server and ESP32 (general concepts)
Replies: 3
Views: 3524

Re: Starting with SQL server and ESP32 (general concepts)

Sending a request, be it a SQL or a HTTP[-S] one, 400 times per second is pretty inefficient in the first place. Suggest indeed saving up e.g. 1 second of samples and sending it like that. If you do that, it doesn't quite matter if you drop it directly into a SQL database or if it needs to go throu...
by MoustachedBird
Fri Jun 19, 2020 11:13 pm
Forum: General Discussion
Topic: Starting with SQL server and ESP32 (general concepts)
Replies: 3
Views: 3524

Starting with SQL server and ESP32 (general concepts)

Hello (sorry if my doubts are kind of basic but i'm just starting). I want to start a new project related to sending data from a sensor to an SQL-Server. I've been looking for information trying to understand how it works and I see that some users make HTTP REQUESTS (most of cases POST request) to t...
by MoustachedBird
Sat Jun 13, 2020 8:35 am
Forum: General Discussion
Topic: On which core my code is running?
Replies: 1
Views: 8057

On which core my code is running?

Hello everyone, i'm new using ESP-IDF (FreeRTOS) and I want to know if it is possible to identify on which core my code is running? If I understand correctly FreeRTOS uses the two cores automatically, it knows which one is free and which is not, so it runs a segment of a task (or a complete it depen...