Closed JpEncausse closed 1 year ago
I haven't used HX711, but I can see from the device specification that it does not belong to the I2C communication method
For re-information, you can install EspExceptionDecoder to decode and view the cause of the error https://github.com/me-no-dev/EspExceptionDecoder
I haven't used HX711, but I can see from the device specification that it does not belong to the I2C communication method
OMG thanks I thought I had read it was. I'll order the one from DFRobotics
For re-information, you can install EspExceptionDecoder to decode and view the cause of the error https://github.com/me-no-dev/EspExceptionDecoder
Thanks ! I'll try to install it on PlatformIO
Do you recommend an I2C brand working well with the Camera ? (I'm looking for LED, NFC, Touch ... Many thanks !
Doesn't the board already have an I2C OLED display?
Yes I think. I try to add modules to the board:
Using the I2C extension like it is done and explain with BME280 module. But with other modules. I try to figureout what is compatible.
This ESP-32 would be awesome if I could add a custom sensor like scale or LED or others
I try to figure out how to make it work PN532 in I2C but still no success https://www.electroschematics.com/nfc-rfid-module-pn532/
I correclty wire the camera as schema explain
In my case I use 5V, GND, IO22 and IO21 and for the code I follow the sensor code:
#include <PN532_I2C.h>
#include <PN532.h>
#include <NfcAdapter.h>
PN532_I2C pn532_i2c(Wire);
NfcAdapter nfc = NfcAdapter(pn532_i2c);
bool setupNFC(){
Wire.begin(I2C_SDA, I2C_SCL);
nfc.begin();
return false;
}
bool loopNFC(){
delay(100);
if (nfc.tagPresent()) {
NfcTag tag = nfc.read();
tag.print();
}
}
But receive an error Didn't find PN53x board
I assume I missed something I should do ?
There are no errors in the sketch, but there may be issues with the hardware connection. I remember that this module needs to be switched to I2C communication mode in order to be used
There are no errors in the sketch, but there may be issues with the hardware connection. I remember that this module needs to be switched to I2C communication mode in order to be used
Yes I set the PIN to I2C, I'll double check the module on an other board to check if it works
Works perfectly with DF Robot I2C Scale many thanks !
Hello, Is it possible to connect an HX711 module to the camera board v 1.6.2 with JH2.0 port ?
I'm using the sketch template. Everything works fine (many thanks !) but when connecting the HX711 module I have the following error :
So the board reboot.
setupSensor()
andreadSensor()
assuming it has a side effectAccording to the documentation HX711 is I2C compatible and the code compile correctly so I try to figure out what happened ? What should I do to make it work ?
I understand the difference with BME280 that is using other port SDA and SCL but I'm not skilled enought to understand the wire-ing to do. If you can point me into the right direction ? Many Thanks !