Search found 6 matches

by jimas13
Sat Apr 10, 2021 11:05 pm
Forum: General Discussion
Topic: How to use Arduino library while using Arduino as ESP-IDF component.
Replies: 5
Views: 6172

Re: How to use Arduino library while using Arduino as ESP-IDF component.

shio2004 wrote:
Wed Dec 25, 2019 1:55 pm
This problem was solved by using another library.
Which library did you use?
I am having the same problem and do not seem to find a workaround
by jimas13
Mon Mar 08, 2021 7:29 am
Forum: ESP-IDF
Topic: Code migration from an Arduino library.
Replies: 3
Views: 2980

Re: Code migration from an Arduino library.

You can add the Arduino SDK into your ESP-IDF project as a component. link . Please correct me if i am wrong, what you propose is to reference the arduino SDK in my project, leave the library as it is and init the ESP32 module by running a task that communicates with the sensor, while letting FreeR...
by jimas13
Sun Mar 07, 2021 11:10 pm
Forum: ESP-IDF
Topic: Code migration from an Arduino library.
Replies: 3
Views: 2980

Code migration from an Arduino library.

Hello fellow forum-ers. I have stumbled upon a setback in my project and I am asking for some assistance. In the past I had thought of a project that involved an Arduino and a fingerprint sensor, for which adafruit provided an basic sdk library, which I used in order to handle all of the functions o...
by jimas13
Sun Mar 07, 2021 10:59 pm
Forum: ESP-IDF
Topic: Building ESP32 using CMAKE
Replies: 4
Views: 3179

Re: Building ESP32 using CMAKE

Hello, you should use the terminal window that gets setup upon installation of the framework.
Once you open the esp-idf-terminal all of the paths needed in order to run the IDF.py and such commands are added to the session and you can utilise all of the python scripts, at your disposal
by jimas13
Tue Jan 19, 2021 9:28 pm
Forum: ESP-IDF
Topic: starter project - a question about implementation
Replies: 3
Views: 3043

Re: starter project - a question about implementation

From my reading it appears that the web server and the dht code will be on the same esp32. In that case in the dht code write the formatted or unformatted result to a global variable and in the server code pick it up. Tom Meyers Thanks for the reply Tom! Affirmative, the code block will be run on o...
by jimas13
Tue Jan 19, 2021 9:03 am
Forum: ESP-IDF
Topic: starter project - a question about implementation
Replies: 3
Views: 3043

starter project - a question about implementation

Hello. I would like to ask a question about the implementation of a system that notifies the user of the temperature of a room and handles some other background tasks based on the temperature. The scenario is the below: A user can connect to a web server that will show a temperature real-time graph(...