You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is for the Arduino platform. The Arduino standard library includes a type String. Why do I still need to add a .c_str() to the end of all my parameters???
e.g.: WiFi.softAP(ssid.c_str(). passwd.c_str());
The text was updated successfully, but these errors were encountered:
No. The Arduino WiFi APIs were designed to support the Arduino WiFi shield. You know that you can easily Google this type of information: https://www.arduino.cc/en/Reference/WiFi
This project is very different:
This project brings support for ESP8266 chip to the Arduino environment. It lets you write sketches using familiar Arduino functions and libraries, and run them directly on ESP8266, no external microcontroller required.
ESP8266 Arduino core comes with libraries to communicate over WiFi using TCP and UDP, set up HTTP, mDNS, SSDP, and DNS servers, do OTA updates, use a file system in flash memory, work with SD cards, servos, SPI and I2C peripherals.
This project has been working to replicate the Arduino APIs, and Arduino WiFi APIs, but on the ESP8266-based hardware ... which has integrated WiFi capabilities.
This is for the Arduino platform. The Arduino standard library includes a type String. Why do I still need to add a .c_str() to the end of all my parameters???
e.g.: WiFi.softAP(ssid.c_str(). passwd.c_str());
The text was updated successfully, but these errors were encountered: