Search found 6 matches
- Tue May 10, 2022 5:27 pm
- Forum: General Discussion
- Topic: ESP32-CAM I2C conflict
- Replies: 1
- Views: 2806
Re: ESP32-CAM I2C conflict
Hi! What do you mean by "fails"? How exactly? Do the pcf8574_...() functions return error codes? Which? I suggest you write a simple program that uses a camera and pcf8574 and reproduce the error. Then create an issue in my repository ( https://github.com/UncleRus/esp-idf-lib ), post the source of t...
- Tue May 10, 2022 1:27 pm
- Forum: ESP-IDF
- Topic: Espressif component registry
- Replies: 4
- Views: 3680
Re: Espressif component registry
Thanks for the kind words.
I will be happy to participate in the development of the component registry for the ESP-IDF.
ESP_Minatel, of course, let's talk privately. We can use private messages on this forum or you can write to my email: unclerus<at>gmail.com
I will be happy to participate in the development of the component registry for the ESP-IDF.
ESP_Minatel, of course, let's talk privately. We can use private messages on this forum or you can write to my email: unclerus<at>gmail.com
- Sat May 07, 2022 9:35 am
- Forum: ESP-IDF
- Topic: Espressif component registry
- Replies: 4
- Views: 3680
Espressif component registry
Hi! I have a few ESP-IDF components (for example, the popular https://github.com/UncleRus/esp-idf-lib collection) and would like to upload them to the Espressif Component Registry. In this regard, there are a number of questions: - Is there a detailed instruction for creating an idf_component.yml ma...
- Thu May 20, 2021 5:16 pm
- Forum: ESP-IDF
- Topic: Can I use Arduino HX711 Library in ESP-IDF?
- Replies: 1
- Views: 3667
Re: Can I use Arduino HX711 Library in ESP-IDF?
Write this function yourself, it's simple. First of all, write something like this to average measurements: esp_err_t hx711_read_average(hx711_t *dev, size_t times, bool rate, int32_t *data) { int32_t v; *data = 0; for (size_t i = 0; i < times; i++) { esp_err_t res = hx711_read_data(dev, &v); if (re...
- Sat Apr 11, 2020 1:35 pm
- Forum: Hardware
- Topic: ESP32 and QMC5883
- Replies: 1
- Views: 6136
Re: ESP32 and QMC5883
HMC5883 and QMC5883 has different register addresses.
Both chips are supported in esp-idf-lib: https://github.com/UncleRus/esp-idf-lib
Both chips are supported in esp-idf-lib: https://github.com/UncleRus/esp-idf-lib
- Thu Aug 01, 2019 6:54 pm
- Forum: General Discussion
- Topic: esp-idf and HX711
- Replies: 3
- Views: 9680
Re: esp-idf and HX711
Here is ESP-IDF driver for HX711: https://github.com/UncleRus/esp-idf-lib