Search found 102 matches

by Agree007
Mon Sep 07, 2020 9:19 am
Forum: ESP32 Arduino
Topic: Communicationg TWO ESP32 Boards
Replies: 8
Views: 9087

Re: Communicationg TWO ESP32 Boards

WiFi and bluetooth are normaly used to communicate between boards 😉 If you need a wired connection, then it will depend on your requirement, speed, data size ect. ? I have testede serial between two esp32 and it works fine. What issue/problems do you have using serial ? And what have you tryed to ov...
by Agree007
Thu Sep 03, 2020 12:42 pm
Forum: ESP32 Arduino
Topic: ESP32 Can't make an accurate Frequency Counter ???
Replies: 12
Views: 13965

Re: ESP32 Can't make an accurate Frequency Counter ???

If this statement: // I got One ESP32 to produce a Square wave and send that through 1 wire to another ESP32 that reads the pulses , everything worked perfectly and it was so stable , but once we connect mains power .. we get those erratic readings // Then your problem is with your power circuit and...
by Agree007
Sun Aug 09, 2020 6:43 am
Forum: ESP32 Arduino
Topic: problem using MPU-6050 Accel/Gyro with ESP32
Replies: 11
Views: 11155

Re: problem using MPU-6050 Accel/Gyrp with ESP32

You add the two file a local file to your program and included MPU6050.h in you Main file.

This way you dont overwrite any other files.
by Agree007
Sat Aug 08, 2020 8:56 pm
Forum: ESP32 Arduino
Topic: problem using MPU-6050 Accel/Gyro with ESP32
Replies: 11
Views: 11155

Re: problem using MPU-6050 Accel/Gyrp with ESP32

Sorry, selected wrong link, you should use MPU6050 .h & .cpp from this link:
https://github.com/nkolban/esp32-snippe ... /cpp_utils
by Agree007
Sat Aug 08, 2020 6:45 am
Forum: ESP32 Arduino
Topic: problem using MPU-6050 Accel/Gyro with ESP32
Replies: 11
Views: 11155

Re: problem using MPU-6050 Accel/Gyrp with ESP32

I have not try that lib, so cant tell. I did some test last year, using Kolban's code and it works fine for me: https://github.com/nkolban/esp32-snippets/blob/master/hardware/accelerometers/mpu6050.c Some times it can be the naming of the I2C pins, so you can try swop them, depending on your mpu6050...
by Agree007
Fri Aug 07, 2020 6:27 am
Forum: ESP32 Arduino
Topic: problem using MPU-6050 Accel/Gyro with ESP32
Replies: 11
Views: 11155

Re: problem using MPU-6050 Accel/Gyrp with ESP32

Does your mpu-6050 lib support the esp32 ?
by Agree007
Thu Aug 06, 2020 6:19 pm
Forum: General Discussion
Topic: ESP32WROOM32-DEVKIT C V4 Definitive pin connections
Replies: 4
Views: 4532

Re: ESP32WROOM32-DEVKIT C V4 Definitive pin connections

I dont know how to upload pictures.

Picture 6 in the link you provided is the pinout of the module, so what are you looking for ?
by Agree007
Thu Aug 06, 2020 2:52 pm
Forum: General Discussion
Topic: ESP32WROOM32-DEVKIT C V4 Definitive pin connections
Replies: 4
Views: 4532

Re: ESP32WROOM32-DEVKIT C V4 Definitive pin connections

Please share a picture of your board (both side) and from where you got it ?
There is a lot of different board and manufactors out there 😉
by Agree007
Wed Jul 29, 2020 11:12 am
Forum: General Discussion
Topic: How to impliment DNS in AP mode?
Replies: 2
Views: 2920

Re: How to impliment DNS in AP mode?

Do you have s DNS server connected to the AP ?

If not you need to add one or write a DNS server code for the esp32.
by Agree007
Sat Jul 25, 2020 6:48 pm
Forum: General Discussion
Topic: Checking Internet connectivity using ESP32
Replies: 4
Views: 5945

Re: Checking Internet connectivity using ESP32

When you cant use DNS, then you have the other optioner, I have used http get and IT works, have seen a ping lib, but not testede any.