Hello,
I was wondering where to put arduino libraries when using the Arduino-ESP32 as an component in an ESP-IDF project?
If I just put the arduino library into the components folder it will not compile because there is no component.mk file.
Any help is appreciated.
Regards,
Thomas
Search found 3 matches
- Mon Aug 28, 2017 8:30 pm
- Forum: ESP32 Arduino
- Topic: Whats the prefered way of including arduino libraries when using ESP-IDF
- Replies: 2
- Views: 8514
- Tue Aug 15, 2017 10:59 am
- Forum: General Discussion
- Topic: I2C with ESP-IDF vs. esp32-arduino
- Replies: 2
- Views: 7583
I2C with ESP-IDF vs. esp32-arduino
Hello, I try to read data from a DS3231/DS1307 module using a ESP-WROOM-32. I have a working Arduino code snippet which in general does the following: #define DS3231_I2C_ADDRESS 0x68 Wire.begin(); Wire.beginTransmission(DS3231_I2C_ADDRESS); Wire.write(0); // set DS3231 register pointer to 00h Wire.e...
- Mon Aug 14, 2017 12:32 am
- Forum: Sample Code
- Topic: [Video] ESP32 - DS1307 real time clock
- Replies: 14
- Views: 35379
Re: [Video] ESP32 - DS1307 real time clock
I am having exactly the same problem. I am using a DS3231 (which is nearly compatible with the DS1307) but I cannot read anything using the ESP-IDF. If I use the Arduino environment (as a component in an IDF project) everything works fine. The arduino code which I am using is from this site: http://...