mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-27 18:02:17 +03:00
update AddrList and examples (#5422)
This commit is contained in:
@ -21,6 +21,11 @@
|
||||
#include <ESP8266HTTPClient.h>
|
||||
#include <ESP8266httpUpdate.h>
|
||||
|
||||
#ifndef STASSID
|
||||
#define STASSID "your-ssid"
|
||||
#define STAPSK "your-password"
|
||||
#endif
|
||||
|
||||
ESP8266WiFiMulti WiFiMulti;
|
||||
|
||||
#define MANUAL_SIGNING 0
|
||||
@ -66,7 +71,7 @@ void setup() {
|
||||
}
|
||||
|
||||
WiFi.mode(WIFI_STA);
|
||||
WiFiMulti.addAP("SSID", "PASS");
|
||||
WiFiMulti.addAP(STASSID, STAPSK);
|
||||
|
||||
#if MANUAL_SIGNING
|
||||
signPubKey = new BearSSL::PublicKey(pubkey);
|
||||
|
Reference in New Issue
Block a user