Search found 2 matches

by Champ76
Mon Feb 26, 2018 2:41 pm
Forum: General Discussion
Topic: How to read gpio configuration?
Replies: 2
Views: 6044

Re: How to read gpio configuration?

If you are using Arduino core for ESP32, than use digitalRead(pin); which will return value 0 or 1. You need to pass one parameter which is GPIO pin number. For example, #include <Arduino.h> #define MyPin 15 #define LED_BUILTIN 2 //----------------------------------------------------- void setup(voi...
by Champ76
Fri Feb 16, 2018 1:40 pm
Forum: ESP-IDF
Topic: Communicating to ESP32 from PC Host - Designing for Production
Replies: 5
Views: 16392

Re: Communicating to ESP32 from PC Host - Designing for Production

I am also doing development similar to @fermienrico. I have developed code for ESP32 in Arduino IDE. ESP32 working in access point mode. I have developed Java code on windows machine which scan nearby WiFi device and connect to it. I am able to connect to ESP32 from windows machine and both side (ES...