Search found 15 matches

by gdsports
Wed Aug 16, 2017 5:56 am
Forum: ESP32 Arduino
Topic: Code will not compile with Arduino
Replies: 3
Views: 7189

Re: Code will not compile with Arduino

Installs just fine but I use Ubuntu Linux. If you are using Windows, try this.

http://randomnerdtutorials.com/installi ... tructions/

Do not change the boards URL in the preferences window. This will not help and might mess up your existing board packages.
by gdsports
Wed Aug 16, 2017 5:50 am
Forum: ESP32 Arduino
Topic: help for rebuilding sketch (esp8266) for esp32 ?
Replies: 3
Views: 7348

Re: help for rebuilding sketch (esp8266) for esp32 ?

I suggest looking at the examples to see what has changed.

One big change is the include file names have changed. Try changing ESP8266WiFi.h to WiFi.h and ESP8266mDNS.h to ESPmDNS.h.
by gdsports
Fri Aug 11, 2017 12:12 am
Forum: ESP32 Arduino
Topic: ESP32 softap program in Arduino
Replies: 7
Views: 11172

Re: ESP32 softap program in Arduino

An unofficial port for ESP32 is available. WiFiManger depends on other libraries but there are unofficial ESP32 ports for the dependencies.

https://github.com/tzapu/WiFiManager/issues/241
by gdsports
Fri Aug 11, 2017 12:02 am
Forum: ESP32 Arduino
Topic: Help With Json and Oled
Replies: 3
Views: 7669

Re: Help With Json and Oled

ArduinoJson Assistant
How to use ArduinoJson?
How to compute the JsonBuffer size?
Paste your JSON in the box and you'll know...

https://bblanchon.github.io/ArduinoJson/assistant/

Generates Arduino code to parse the JSON you paste into the input box.
by gdsports
Wed Aug 02, 2017 12:24 am
Forum: ESP32 Arduino
Topic: How to send a e-mail (ESP32-Arduino)
Replies: 4
Views: 23404

Re: How to send a e-mail (ESP32-Arduino)

Alternatively, look at ifttt.com webhooks (previously known as maker channel). Send a trigger using http GET or POST from the ESP. TLS is optional. The HTTPClient library is helpful for this. When IFTTT receives the trigger, it can send email, SMS, tweet, etc.