Помогите пожалуйста со скетчем - нужно добавить еще одну точку доступа в скетч?? // Конфигурация устройства: // ======================================================================= const char* ssid = "nikiv3"; // SSID const char* password = "HUHICkyX0L"; // пароль String weatherKey = "641f0209372bc15f544ccc9046477f90"; // Чтобы получить API ключь, перейдите по ссылке http://openweathermap.org/api String weatherLang = "&lang=ru"; String cityID = "515024"; //Orehovo // ====================================
Начало кода- #include <ArduinoJson.h> #include <Fonts/FreeSerifBold18pt7b.h> #include <Fonts/FreeSansBold12pt7b.h> #define OLED_RESET 5 // LED_BUILTIN //4 Adafruit_SSD1306 display(OLED_RESET); #define NUMFLAKES 10 #define XPOS 0 #define YPOS 1 #define DELTAY 2 // ======================================================================= // Конфигурация устройства: // ======================================================================= const char* ssid = "nikiv3"; // SSID const char* password = "HUHICkyX0L"; // пароль String weatherKey = "641f0209372bc15f544ccc9046477f90"; // Чтобы получить API ключь, перейдите по ссылке http://openweathermap.org/api String weatherLang = "&lang=ru"; String cityID = "515024"; //Orehovo // ======================================================================= WiFiClient client; // ======================== Погодные переменные String weatherMain = ""; String weatherDescription = ""; String weatherLocation = ""; String country; int humidity; int pressure; float temp; float tempMin, tempMax; int clouds; float windSpeed; String date; String currencyRates; String weatherString; void setup() { Serial.begin(115200); // ======================== Соединение с WIFI WiFi.mode(WIFI_STA); WiFi.begin(ssid, password); // Подключаемся к WIFI while (WiFi.status() != WL_CONNECTED) { // Ждем до посинения delay(500); Serial.print("."); }