Iman Ahmadvand
241531aa4c
Adding softAP SSID & PSK query API ( #4138 )
...
* softAP SSID & PSK query API added.
Signatures:
String ESP8266WiFiAP::softAPSSID() const;
String ESP8266WiFiAP::softAPPSK() const;
* Fix for proper C-style string copy
* add API to validate input ip as string
Signatures:
static bool IPAddress::isValid(const String& arg);
static bool IPAddress::isValid(const char* arg, size_t len);
* fix indentation
* fix ip string validation to use built-in implementation.
signatures:
static bool isValid(const String& arg);
static bool isValid(const char* arg);
2018-03-28 09:27:20 -03:00
Victor Tseng
5666ec2ec1
const-correctness IPAddress::toString()
...
it doesn't modify any member variables, should be safe to be const.
2016-09-13 00:32:29 +08:00
Baruch Even
91cc6ff4f9
Avoid multiple instances of INADDR_NONE
...
By moving the definition from the header to the source we now only use
one instance for the entire app with a little saving in space.
2016-03-24 09:47:02 +02:00
Martin Ayotte
c1e91c722f
manual merge of IPAddress from Arduino.cc e3909b4e2c
2016-01-17 09:43:07 -05:00
Markus Sattler
7edcda4a0f
IPAddress allow uint32_t compare
2015-12-29 15:26:14 +01:00
Martin Ayotte
b28e879af6
change toCharArray() to toString()
2015-08-21 11:07:26 -04:00
Martin Ayotte
664d92fbd0
add toCharArray() to IPAddress class
2015-08-20 23:43:01 -04:00
Markus Sattler
f165a0afcd
use Eclipse auto Format to get rip auf the tab, space and code style inconsistency
2015-04-06 19:33:50 +02:00
Ivan Grokhotkov
04fe8e8b58
Basic support for esp8266 platform
...
This includes empty stubs for most core Arduino functions.
Need to actually implement all those digital reads writes whatever.
Need to prebuild toolchains (xtensa-elf-lx106) for 3 platforms and put them on some download server.
Need to do the same with esptool.
Need to fix 0x40000 binary generation and add correct upload commands.
Maybe even implement uploads over WiFi.
2014-11-15 10:45:08 +03:00