Search found 13 matches

by JacoFourie
Fri Nov 18, 2022 6:35 pm
Forum: ESP32 Arduino
Topic: ESP32 + JSN-SR04T wont read more than 40cm
Replies: 1
Views: 1055

Re: ESP32 + JSN-SR04T wont read more than 40cm

Anybody ?????
by JacoFourie
Thu Nov 10, 2022 9:25 pm
Forum: ESP32 Arduino
Topic: ESP32 + JSN-SR04T wont read more than 40cm
Replies: 1
Views: 1055

ESP32 + JSN-SR04T wont read more than 40cm

Hi all. If I use the JSN-SR04T sensor on the ESP32 it will read fine between 20 - 40 cm. It will not read more than 40 CM yet the same code on an Arduino Uno will read up to 4 meters. Why is that? #define ECHOPIN 17 #define TRIGPIN 16 void setup() { Serial.begin(115200); pinMode(ECHOPIN,INPUT_PULLUP...
by JacoFourie
Sun Oct 23, 2022 10:32 pm
Forum: ESP32 Arduino
Topic: ESP32-WROOM-32 Rev1 wont connect After Upgrade
Replies: 0
Views: 1059

ESP32-WROOM-32 Rev1 wont connect After Upgrade

Hi all. I have not looked at the Arduino / ESP32 platform for some years. I now need to build some projects again. I have 5 ESPDUINO boards that used to work fine connecting to the WiFi network. I wanted to start using the WiFi Managers and for that, I had to upgrade a lot of libraries. I did not wr...
by JacoFourie
Tue Mar 20, 2018 9:36 pm
Forum: ESP32 Arduino
Topic: SHT1x RH and Temp sensor
Replies: 2
Views: 5101

Re: SHT1x RH and Temp sensor

Is nobody using this probe on this board ? If not what are you using for Relative humidity in an industrial setting ?
by JacoFourie
Sat Feb 24, 2018 5:44 am
Forum: ESP32 Arduino
Topic: GPIO Pin # for RX2 and TX2 ? (Solved)
Replies: 8
Views: 54520

Re: GPIO Pin # for RX2 and TX2 ?

Hi. I wanted to use the default pins marked RX2 and TX2 as they are on the board already. I know I can use any other pin but then I will run out of other pins as I am using the other pins for the UART and there are 2 pins already marked for that reason. The image I posted is from the DEV boards docu...
by JacoFourie
Thu Feb 22, 2018 7:33 pm
Forum: ESP32 Arduino
Topic: SPIFFS and Timer intterupt will crash ESP32
Replies: 3
Views: 6416

Re: SPIFFS and Timer intterupt will crash ESP32

OK this is solved.

I had to add DRAM_ATTR to the interrupt and all the function called by the interrupt.
I also had to move the ISR above the setup function.
by JacoFourie
Thu Feb 22, 2018 2:42 pm
Forum: ESP32 Arduino
Topic: SPIFFS and Timer intterupt will crash ESP32
Replies: 3
Views: 6416

SPIFFS and Timer intterupt will crash ESP32

I need to run some code every 1000 micro seconds. The timer code works on its own and the SPIFFS code works on its own. But as soon as you use a Timer with SPIFFS the ESP32 will crash and burn. I just added a timer to the SPIFFS sample to show you it will reboot all the time. If you comment out the ...
by JacoFourie
Tue Feb 20, 2018 9:34 pm
Forum: ESP32 Arduino
Topic: GPIO Pin # for RX2 and TX2 ? (Solved)
Replies: 8
Views: 54520

Re: GPIO Pin # for RX2 and TX2 ?

Thanks. That did the trick.
by JacoFourie
Mon Feb 19, 2018 8:54 am
Forum: ESP32 Arduino
Topic: GPIO Pin # for RX2 and TX2 ? (Solved)
Replies: 8
Views: 54520

Re: GPIO Pin # for RX2 and TX2 ?

Anybody ??
by JacoFourie
Fri Feb 16, 2018 8:02 am
Forum: ESP32 Arduino
Topic: GPIO Pin # for RX2 and TX2 ? (Solved)
Replies: 8
Views: 54520

Re: GPIO Pin # for RX2 and TX2 ?

I read somewhere RX0 and TX0 is GPIO 1 and 3 and RX2 and TX2 is 16 and 17. Is that correct ?