Search found 3 matches
- Thu Oct 31, 2024 10:02 pm
- Forum: ESP-IDF
- Topic: Rewrite I2C read / write functions to use newer driver/i2c_master.h API
- Replies: 6
- Views: 6779
Re: Rewrite I2C read / write functions to use newer driver/i2c_master.h API
Hi, A bmp280 example using i2c_master.h is available here: https://github.com/K0I05/esp32-s3/tree/main/examples/ESP32-S3_I2C-BMP280_20240515 I am working on the bmp680 driver and hope to post it soon. Available drivers are listed here: https://github.com/K0I05/esp32-s3/tree/main/peripherals/i2c Rega...
- Fri Oct 11, 2024 3:44 am
- Forum: General Discussion
- Topic: i2c: This driver is an old driver, please migrate your application code to adapt `driver/i2c_master.h`
- Replies: 2
- Views: 2953
Re: i2c: This driver is an old driver, please migrate your application code to adapt `driver/i2c_master.h`
A few examples utilizing the esp-idf 5.2.2 design pattern with i2c_master.h are available here: https://github.com/K0I05/esp32-s3
- Thu Sep 26, 2024 4:41 am
- Forum: General Discussion
- Topic: Trigger an action every "exact" second after syncing with NTP Server
- Replies: 5
- Views: 12709
Re: Trigger an action every "exact" second after syncing with NTP Server
Take a look at the following example: https://github.com/K0I05/esp32-s3/tree/main/examples/ESP32-S3_DATA-LOGGER_20240924/components/esp_datalogger The task_schedule.h component is a user-defined task delay that synchronizes with the system clock and accounts for the time it takes to run the task (~1...