diff --git a/examples/Blinker_AHRS/AHRS_BLE/AHRS_BLE.ino b/examples/Blinker_AHRS/AHRS_BLE/AHRS_BLE.ino index d709c7a3..51196962 100644 --- a/examples/Blinker_AHRS/AHRS_BLE/AHRS_BLE.ino +++ b/examples/Blinker_AHRS/AHRS_BLE/AHRS_BLE.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_BLE #include @@ -43,11 +50,8 @@ void dataRead(const String & data) void setup() { - Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + Serial.begin(115200); + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_AHRS/AHRS_WiFi/AHRS_WiFi.ino b/examples/Blinker_AHRS/AHRS_WiFi/AHRS_WiFi.ino index 4650744f..9c6a2ea3 100644 --- a/examples/Blinker_AHRS/AHRS_WiFi/AHRS_WiFi.ino +++ b/examples/Blinker_AHRS/AHRS_WiFi/AHRS_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -47,11 +54,8 @@ void dataRead(const String & data) void setup() { - Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + Serial.begin(115200); + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_APCONFIG/APCONFIG_WiFi/APCONFIG_WiFi.ino b/examples/Blinker_APCONFIG/APCONFIG_WiFi/APCONFIG_WiFi.ino index e0776cc7..8cadbfcb 100644 --- a/examples/Blinker_APCONFIG/APCONFIG_WiFi/APCONFIG_WiFi.ino +++ b/examples/Blinker_APCONFIG/APCONFIG_WiFi/APCONFIG_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #define BLINKER_APCONFIG @@ -47,10 +54,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_AQI/AQI_WiFi/AQI_WiFi.ino b/examples/Blinker_AQI/AQI_WiFi/AQI_WiFi.ino index bcedee02..df0867c1 100644 --- a/examples/Blinker_AQI/AQI_WiFi/AQI_WiFi.ino +++ b/examples/Blinker_AQI/AQI_WiFi/AQI_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -53,10 +60,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_AT_Firmware/AT_Firmware_WiFi/AT_Firmware_WiFi.ino b/examples/Blinker_AT_Firmware/AT_Firmware_WiFi/AT_Firmware_WiFi.ino index 82ee9a4b..a7e2fdd2 100644 --- a/examples/Blinker_AT_Firmware/AT_Firmware_WiFi/AT_Firmware_WiFi.ino +++ b/examples/Blinker_AT_Firmware/AT_Firmware_WiFi/AT_Firmware_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,7 +22,11 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki diff --git a/examples/Blinker_AUTO/AUTO_WiFi/AUTO_WiFi.ino b/examples/Blinker_AUTO/AUTO_WiFi/AUTO_WiFi.ino index 550bad93..3c7722a7 100644 --- a/examples/Blinker_AUTO/AUTO_WiFi/AUTO_WiFi.ino +++ b/examples/Blinker_AUTO/AUTO_WiFi/AUTO_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,7 +22,11 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki diff --git a/examples/Blinker_AliGenie/AliGenie_LIGHT/AliGenie_LIGHT.ino b/examples/Blinker_AliGenie/AliGenie_LIGHT/AliGenie_LIGHT.ino index c448fed0..1c7be454 100644 --- a/examples/Blinker_AliGenie/AliGenie_LIGHT/AliGenie_LIGHT.ino +++ b/examples/Blinker_AliGenie/AliGenie_LIGHT/AliGenie_LIGHT.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #define BLINKER_ALIGENIE_LIGHT @@ -373,11 +380,8 @@ void dataRead(const String & data) void setup() { - Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + Serial.begin(115200); + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_AliGenie/AliGenie_OUTLET/AliGenie_OUTLET.ino b/examples/Blinker_AliGenie/AliGenie_OUTLET/AliGenie_OUTLET.ino index c59385c3..0d2a2104 100644 --- a/examples/Blinker_AliGenie/AliGenie_OUTLET/AliGenie_OUTLET.ino +++ b/examples/Blinker_AliGenie/AliGenie_OUTLET/AliGenie_OUTLET.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #define BLINKER_ALIGENIE_OUTLET @@ -96,10 +103,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_AliGenie/AliGenie_SENSOR/AliGenie_SENSOR.ino b/examples/Blinker_AliGenie/AliGenie_SENSOR/AliGenie_SENSOR.ino index 53d38241..6b4cc229 100644 --- a/examples/Blinker_AliGenie/AliGenie_SENSOR/AliGenie_SENSOR.ino +++ b/examples/Blinker_AliGenie/AliGenie_SENSOR/AliGenie_SENSOR.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #define BLINKER_ALIGENIE_SENSOR @@ -71,10 +78,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_ArduinoJson/ArduinoJson_WiFi/ArduinoJson_WiFi.ino b/examples/Blinker_ArduinoJson/ArduinoJson_WiFi/ArduinoJson_WiFi.ino index 1413baee..1d18a30b 100644 --- a/examples/Blinker_ArduinoJson/ArduinoJson_WiFi/ArduinoJson_WiFi.ino +++ b/examples/Blinker_ArduinoJson/ArduinoJson_WiFi/ArduinoJson_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -66,10 +73,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_Bridge/Bridge_WiFi/Bridge_WiFi.ino b/examples/Blinker_Bridge/Bridge_WiFi/Bridge_WiFi.ino index b6980c27..a84e01e0 100644 --- a/examples/Blinker_Bridge/Bridge_WiFi/Bridge_WiFi.ino +++ b/examples/Blinker_Bridge/Bridge_WiFi/Bridge_WiFi.ino @@ -1,31 +1,38 @@ -// /* ***************************************************************** -// * -// * Download latest Blinker library here: -// * https://github.com/blinker-iot/blinker-library/archive/master.zip -// * -// * -// * Blinker is a platform with iOS and Android apps to -// * control embedded hardware like Arduino, Raspberrt Pi. -// * You can easily build graphic interfaces for all your -// * projects by simply dragging and dropping widgets. -// * -// * Docs: https://doc.blinker.app/ -// * https://github.com/blinker-iot/blinker-doc/wiki -// * -// * ***************************************************************** -// * -// * Blinker 库下载地址: -// * https://github.com/blinker-iot/blinker-library/archive/master.zip -// * -// * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 -// * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 -// * -// * 文档: https://doc.blinker.app/ -// * https://github.com/blinker-iot/blinker-doc/wiki -// * -// * *****************************************************************/ - -#define BLINKER_PRINT Serial +/* ***************************************************************** + * + * Download latest Blinker library here: + * https://github.com/blinker-iot/blinker-library/archive/master.zip + * + * + * Blinker is a platform with iOS and Android apps to + * control embedded hardware like Arduino, Raspberrt Pi. + * You can easily build graphic interfaces for all your + * projects by simply dragging and dropping widgets. + * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * + * Docs: https://doc.blinker.app/ + * https://github.com/blinker-iot/blinker-doc/wiki + * + * ***************************************************************** + * + * Blinker 库下载地址: + * https://github.com/blinker-iot/blinker-library/archive/master.zip + * + * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases + * + * 文档: https://doc.blinker.app/ + * https://github.com/blinker-iot/blinker-doc/wiki + * + * *****************************************************************/ + #define BLINKER_WIFI #include @@ -48,6 +55,7 @@ void bridge1Read(const String & data) void setup() { Serial.begin(115200); + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_Button/Button_BLE/Button_BLE.ino b/examples/Blinker_Button/Button_BLE/Button_BLE.ino index 534bedf4..248de453 100644 --- a/examples/Blinker_Button/Button_BLE/Button_BLE.ino +++ b/examples/Blinker_Button/Button_BLE/Button_BLE.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_BLE #include @@ -108,10 +115,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_Button/Button_WiFi/Button_WiFi.ino b/examples/Blinker_Button/Button_WiFi/Button_WiFi.ino index 5206291c..21ad5b11 100644 --- a/examples/Blinker_Button/Button_WiFi/Button_WiFi.ino +++ b/examples/Blinker_Button/Button_WiFi/Button_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -111,10 +118,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_CLOUDCONFIG/CLOUDCONFIG_WiFi/CLOUDCONFIG_WiFi.ino b/examples/Blinker_CLOUDCONFIG/CLOUDCONFIG_WiFi/CLOUDCONFIG_WiFi.ino index 8bce3806..91fd9955 100644 --- a/examples/Blinker_CLOUDCONFIG/CLOUDCONFIG_WiFi/CLOUDCONFIG_WiFi.ino +++ b/examples/Blinker_CLOUDCONFIG/CLOUDCONFIG_WiFi/CLOUDCONFIG_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -56,10 +63,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_CLOUDDATA/CLOUDDATA_WiFi/CLOUDDATA_WiFi.ino b/examples/Blinker_CLOUDDATA/CLOUDDATA_WiFi/CLOUDDATA_WiFi.ino index c77a1764..fd8afd85 100644 --- a/examples/Blinker_CLOUDDATA/CLOUDDATA_WiFi/CLOUDDATA_WiFi.ino +++ b/examples/Blinker_CLOUDDATA/CLOUDDATA_WiFi/CLOUDDATA_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -54,10 +61,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_DHT/DHT_BLE/DHT_BLE.ino b/examples/Blinker_DHT/DHT_BLE/DHT_BLE.ino index 6d9515d3..caabeec3 100644 --- a/examples/Blinker_DHT/DHT_BLE/DHT_BLE.ino +++ b/examples/Blinker_DHT/DHT_BLE/DHT_BLE.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_BLE #include @@ -54,10 +61,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_DHT/DHT_WiFi/DHT_WiFi.ino b/examples/Blinker_DHT/DHT_WiFi/DHT_WiFi.ino index c4f41d8f..fbeb6d78 100644 --- a/examples/Blinker_DHT/DHT_WiFi/DHT_WiFi.ino +++ b/examples/Blinker_DHT/DHT_WiFi/DHT_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -58,10 +65,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_DuerOS/DuerOS_LIGHT/DuerOS_LIGHT.ino b/examples/Blinker_DuerOS/DuerOS_LIGHT/DuerOS_LIGHT.ino index 7054a612..156a9cc5 100644 --- a/examples/Blinker_DuerOS/DuerOS_LIGHT/DuerOS_LIGHT.ino +++ b/examples/Blinker_DuerOS/DuerOS_LIGHT/DuerOS_LIGHT.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #define BLINKER_DUEROS_LIGHT @@ -325,10 +332,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_DuerOS/DuerOS_OUTLET/DuerOS_OUTLET.ino b/examples/Blinker_DuerOS/DuerOS_OUTLET/DuerOS_OUTLET.ino index 7ff8b5a2..176fce03 100644 --- a/examples/Blinker_DuerOS/DuerOS_OUTLET/DuerOS_OUTLET.ino +++ b/examples/Blinker_DuerOS/DuerOS_OUTLET/DuerOS_OUTLET.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #define BLINKER_DUEROS_OUTLET @@ -91,10 +98,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_DuerOS/DuerOS_SENSOR/DuerOS_SENSOR.ino b/examples/Blinker_DuerOS/DuerOS_SENSOR/DuerOS_SENSOR.ino index cd8e0403..a5272075 100644 --- a/examples/Blinker_DuerOS/DuerOS_SENSOR/DuerOS_SENSOR.ino +++ b/examples/Blinker_DuerOS/DuerOS_SENSOR/DuerOS_SENSOR.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #define BLINKER_DUEROS_SENSOR @@ -103,10 +110,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_ESPTOUCH/ESPTOUCH_WiFi/ESPTOUCH_WiFi.ino b/examples/Blinker_ESPTOUCH/ESPTOUCH_WiFi/ESPTOUCH_WiFi.ino index bbfb35fa..1ec638af 100644 --- a/examples/Blinker_ESPTOUCH/ESPTOUCH_WiFi/ESPTOUCH_WiFi.ino +++ b/examples/Blinker_ESPTOUCH/ESPTOUCH_WiFi/ESPTOUCH_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #define BLINKER_ESP_SMARTCONFIG @@ -47,10 +54,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_GPS/GPS_BLE/GPS_BLE.ino b/examples/Blinker_GPS/GPS_BLE/GPS_BLE.ino index 1feb5e01..a357c6a8 100644 --- a/examples/Blinker_GPS/GPS_BLE/GPS_BLE.ino +++ b/examples/Blinker_GPS/GPS_BLE/GPS_BLE.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_BLE #include @@ -44,10 +51,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_GPS/GPS_WiFi/GPS_WiFi.ino b/examples/Blinker_GPS/GPS_WiFi/GPS_WiFi.ino index 8d318149..2a0ab858 100644 --- a/examples/Blinker_GPS/GPS_WiFi/GPS_WiFi.ino +++ b/examples/Blinker_GPS/GPS_WiFi/GPS_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -48,10 +55,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_Heartbeat/Heartbeat_BLE/Heartbeat_BLE.ino b/examples/Blinker_Heartbeat/Heartbeat_BLE/Heartbeat_BLE.ino index a8aa79f8..140fc8e6 100644 --- a/examples/Blinker_Heartbeat/Heartbeat_BLE/Heartbeat_BLE.ino +++ b/examples/Blinker_Heartbeat/Heartbeat_BLE/Heartbeat_BLE.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_BLE #include @@ -70,10 +77,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_Heartbeat/Heartbeat_WiFi/Heartbeat_WiFi.ino b/examples/Blinker_Heartbeat/Heartbeat_WiFi/Heartbeat_WiFi.ino index 53cb1850..77af3a4b 100644 --- a/examples/Blinker_Heartbeat/Heartbeat_WiFi/Heartbeat_WiFi.ino +++ b/examples/Blinker_Heartbeat/Heartbeat_WiFi/Heartbeat_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -81,10 +88,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_Hello/Hello_BLE/Hello_BLE.ino b/examples/Blinker_Hello/Hello_BLE/Hello_BLE.ino index a8db311d..1a927961 100644 --- a/examples/Blinker_Hello/Hello_BLE/Hello_BLE.ino +++ b/examples/Blinker_Hello/Hello_BLE/Hello_BLE.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_BLE #include @@ -51,10 +58,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, HIGH); diff --git a/examples/Blinker_Hello/Hello_WiFi/Hello_WiFi.ino b/examples/Blinker_Hello/Hello_WiFi/Hello_WiFi.ino index 19b99d30..fa4a4b81 100644 --- a/examples/Blinker_Hello/Hello_WiFi/Hello_WiFi.ino +++ b/examples/Blinker_Hello/Hello_WiFi/Hello_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -38,10 +45,6 @@ char pswd[] = "Your WiFi network WPA password or WEP key"; BlinkerButton Button1("btn-abc"); BlinkerNumber Number1("num-abc"); -#define BLINKER_OTA_BLINK_TIME 500 - -uint32_t os_time; - int counter = 0; // 按下按键即会执行该函数 @@ -59,38 +62,20 @@ void dataRead(const String & data) Number1.print(counter); } -void otaStatus(uint32_t load_size, uint32_t total_size) -{ - BLINKER_LOG(load_size/total_size); - // if (millis() - os_time >= BLINKER_OTA_BLINK_TIME) - // { - // os_time = millis(); - - // digitalWrite(LED_BUILTIN, !digitalRead(LED_BUILTIN)); - // } -} - void setup() { // 初始化串口 Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - BLINKER_DEBUG.debugAll(); - #endif + BLINKER_DEBUG.stream(Serial); // 初始化有LED的IO pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, HIGH); // 初始化blinker Blinker.begin(auth, ssid, pswd); - // Blinker.begin(auth); Blinker.attachData(dataRead); Button1.attach(button1_callback); - - BlinkerUpdater.onProgress(otaStatus); } void loop() { diff --git a/examples/Blinker_Joystick/Joystick_BLE/Joystick_BLE.ino b/examples/Blinker_Joystick/Joystick_BLE/Joystick_BLE.ino index efe2917e..d3a400ef 100644 --- a/examples/Blinker_Joystick/Joystick_BLE/Joystick_BLE.ino +++ b/examples/Blinker_Joystick/Joystick_BLE/Joystick_BLE.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_BLE #include @@ -54,10 +61,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_MQTT/MQTT_WiFi/MQTT_WiFi.ino b/examples/Blinker_MQTT/MQTT_WiFi/MQTT_WiFi.ino deleted file mode 100644 index 76849eed..00000000 --- a/examples/Blinker_MQTT/MQTT_WiFi/MQTT_WiFi.ino +++ /dev/null @@ -1,66 +0,0 @@ -/* ***************************************************************** - * - * Download latest Blinker library here: - * https://github.com/blinker-iot/blinker-library/archive/master.zip - * - * - * Blinker is a platform with iOS and Android apps to - * control embedded hardware like Arduino, Raspberrt Pi. - * You can easily build graphic interfaces for all your - * projects by simply dragging and dropping widgets. - * - * Docs: https://doc.blinker.app/ - * https://github.com/blinker-iot/blinker-doc/wiki - * - * ***************************************************************** - * - * Blinker 库下载地址: - * https://github.com/blinker-iot/blinker-library/archive/master.zip - * - * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 - * - * 文档: https://doc.blinker.app/ - * https://github.com/blinker-iot/blinker-doc/wiki - * - * *****************************************************************/ - -#define BLINKER_PRINT Serial -#define BLINKER_WIFI - -#include - -char auth[] = "Your Device Secret Key"; -char ssid[] = "Your WiFi network SSID or name"; -char pswd[] = "Your WiFi network WPA password or WEP key"; - -void dataRead(const String & data) -{ - BLINKER_LOG("Blinker readString: ", data); - - Blinker.vibrate(); - - uint32_t BlinkerTime = millis(); - Blinker.print(BlinkerTime); - Blinker.print("millis", BlinkerTime); -} - -void setup() -{ - Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif - - pinMode(LED_BUILTIN, OUTPUT); - digitalWrite(LED_BUILTIN, LOW); - - Blinker.begin(auth, ssid, pswd); - Blinker.attachData(dataRead); -} - -void loop() -{ - Blinker.run(); -} diff --git a/examples/Blinker_NBIOT/NBIOT_NB73/NBIOT_NB73.ino b/examples/Blinker_NBIOT/NBIOT_NB73/NBIOT_NB73.ino index 8fbaaf18..572a8bfe 100644 --- a/examples/Blinker_NBIOT/NBIOT_NB73/NBIOT_NB73.ino +++ b/examples/Blinker_NBIOT/NBIOT_NB73/NBIOT_NB73.ino @@ -1,29 +1,37 @@ -// /* ***************************************************************** -// * -// * Download latest Blinker library here: -// * https://github.com/blinker-iot/blinker-library/archive/master.zip -// * -// * -// * Blinker is a platform with iOS and Android apps to -// * control embedded hardware like Arduino, Raspberrt Pi. -// * You can easily build graphic interfaces for all your -// * projects by simply dragging and dropping widgets. -// * -// * Docs: https://doc.blinker.app/ -// * https://github.com/blinker-iot/blinker-doc/wiki -// * -// * ***************************************************************** -// * -// * Blinker 库下载地址: -// * https://github.com/blinker-iot/blinker-library/archive/master.zip -// * -// * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 -// * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 -// * -// * 文档: https://doc.blinker.app/ -// * https://github.com/blinker-iot/blinker-doc/wiki -// * -// * *****************************************************************/ +/* ***************************************************************** + * + * Download latest Blinker library here: + * https://github.com/blinker-iot/blinker-library/archive/master.zip + * + * + * Blinker is a platform with iOS and Android apps to + * control embedded hardware like Arduino, Raspberrt Pi. + * You can easily build graphic interfaces for all your + * projects by simply dragging and dropping widgets. + * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * + * Docs: https://doc.blinker.app/ + * https://github.com/blinker-iot/blinker-doc/wiki + * + * ***************************************************************** + * + * Blinker 库下载地址: + * https://github.com/blinker-iot/blinker-library/archive/master.zip + * + * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases + * + * 文档: https://doc.blinker.app/ + * https://github.com/blinker-iot/blinker-doc/wiki + * + * *****************************************************************/ // #define BLINKER_PRINT Serial // #define BLINKER_NBIOT diff --git a/examples/Blinker_Notify/Notify_BLE/Notify_BLE.ino b/examples/Blinker_Notify/Notify_BLE/Notify_BLE.ino index 473a71ed..51b287bb 100644 --- a/examples/Blinker_Notify/Notify_BLE/Notify_BLE.ino +++ b/examples/Blinker_Notify/Notify_BLE/Notify_BLE.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_BLE #include @@ -47,10 +54,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_Notify/Notify_WiFi/Notify_WiFi.ino b/examples/Blinker_Notify/Notify_WiFi/Notify_WiFi.ino index a6e3c2b7..92df586b 100644 --- a/examples/Blinker_Notify/Notify_WiFi/Notify_WiFi.ino +++ b/examples/Blinker_Notify/Notify_WiFi/Notify_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -51,10 +58,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_Number/Number_BLE/Number_BLE.ino b/examples/Blinker_Number/Number_BLE/Number_BLE.ino index 6ddf3038..3def7329 100644 --- a/examples/Blinker_Number/Number_BLE/Number_BLE.ino +++ b/examples/Blinker_Number/Number_BLE/Number_BLE.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_BLE #include @@ -55,10 +62,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_Number/Number_WiFi/Number_WiFi.ino b/examples/Blinker_Number/Number_WiFi/Number_WiFi.ino index 24adcb37..0025017e 100644 --- a/examples/Blinker_Number/Number_WiFi/Number_WiFi.ino +++ b/examples/Blinker_Number/Number_WiFi/Number_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -59,10 +66,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_OTA/OTA_WiFi/OTA_WiFi.ino b/examples/Blinker_OTA/OTA_WiFi/OTA_WiFi.ino index f31068a0..780c0303 100644 --- a/examples/Blinker_OTA/OTA_WiFi/OTA_WiFi.ino +++ b/examples/Blinker_OTA/OTA_WiFi/OTA_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #define BLINKER_OTA_VERSION_CODE "0.1.1" @@ -63,10 +70,7 @@ void otaStatus(uint32_t load_size, uint32_t total_size) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_PRO/Blinker_PRO/Blinker_PRO.ino b/examples/Blinker_PRO/Blinker_PRO/Blinker_PRO.ino index 4cc4a22d..2b9f362e 100644 --- a/examples/Blinker_PRO/Blinker_PRO/Blinker_PRO.ino +++ b/examples/Blinker_PRO/Blinker_PRO/Blinker_PRO.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,7 +22,11 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki @@ -36,7 +44,6 @@ * Learn more:https://blinker.app/ */ -#define BLINKER_PRINT Serial #define BLINKER_PRO #define BLINKER_BUTTON #define BLINKER_BUTTON_PIN D7 @@ -121,10 +128,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_PUSH/PUSH_WiFi/PUSH_WiFi.ino b/examples/Blinker_PUSH/PUSH_WiFi/PUSH_WiFi.ino index 8ac914a8..bb68917d 100644 --- a/examples/Blinker_PUSH/PUSH_WiFi/PUSH_WiFi.ino +++ b/examples/Blinker_PUSH/PUSH_WiFi/PUSH_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -52,10 +59,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_Print/Print_BLE/Print_BLE.ino b/examples/Blinker_Print/Print_BLE/Print_BLE.ino index 59b9aae3..65161a47 100644 --- a/examples/Blinker_Print/Print_BLE/Print_BLE.ino +++ b/examples/Blinker_Print/Print_BLE/Print_BLE.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_BLE #include @@ -44,10 +51,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_Print/Print_WiFi/Print_WiFi.ino b/examples/Blinker_Print/Print_WiFi/Print_WiFi.ino index 94b5d1cf..fa8fbac9 100644 --- a/examples/Blinker_Print/Print_WiFi/Print_WiFi.ino +++ b/examples/Blinker_Print/Print_WiFi/Print_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -48,10 +55,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_RGB/RGB_BLE/RGB_BLE.ino b/examples/Blinker_RGB/RGB_BLE/RGB_BLE.ino index 0cd5f755..addfa856 100644 --- a/examples/Blinker_RGB/RGB_BLE/RGB_BLE.ino +++ b/examples/Blinker_RGB/RGB_BLE/RGB_BLE.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_BLE #include @@ -60,10 +67,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_RGB/RGB_WiFi/RGB_WiFi.ino b/examples/Blinker_RGB/RGB_WiFi/RGB_WiFi.ino index f7ecc6c4..5dc5f262 100644 --- a/examples/Blinker_RGB/RGB_WiFi/RGB_WiFi.ino +++ b/examples/Blinker_RGB/RGB_WiFi/RGB_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -64,10 +71,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_SMS/SMS_WiFi/SMS_WiFi.ino b/examples/Blinker_SMS/SMS_WiFi/SMS_WiFi.ino index 17f5159c..edd67795 100644 --- a/examples/Blinker_SMS/SMS_WiFi/SMS_WiFi.ino +++ b/examples/Blinker_SMS/SMS_WiFi/SMS_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -52,10 +59,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_SR04/SR04_BLE/SR04_BLE.ino b/examples/Blinker_SR04/SR04_BLE/SR04_BLE.ino index 1a9ba8f5..dee6ee73 100644 --- a/examples/Blinker_SR04/SR04_BLE/SR04_BLE.ino +++ b/examples/Blinker_SR04/SR04_BLE/SR04_BLE.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_BLE #include @@ -37,10 +44,7 @@ Ultrasonic SR04(9, 8);// Trig, Echo void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_SR04/SR04_WiFi/SR04_WiFi.ino b/examples/Blinker_SR04/SR04_WiFi/SR04_WiFi.ino index 75182425..dd09663c 100644 --- a/examples/Blinker_SR04/SR04_WiFi/SR04_WiFi.ino +++ b/examples/Blinker_SR04/SR04_WiFi/SR04_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -41,10 +48,7 @@ Ultrasonic SR04(9, 8);// Trig, Echo void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_Slider/Slider_BLE/Slider_BLE.ino b/examples/Blinker_Slider/Slider_BLE/Slider_BLE.ino index 0346ece9..ad66c687 100644 --- a/examples/Blinker_Slider/Slider_BLE/Slider_BLE.ino +++ b/examples/Blinker_Slider/Slider_BLE/Slider_BLE.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_BLE #include @@ -57,10 +64,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_Slider/Slider_WiFi/Slider_WiFi.ino b/examples/Blinker_Slider/Slider_WiFi/Slider_WiFi.ino index 3724a964..b0f9cefa 100644 --- a/examples/Blinker_Slider/Slider_WiFi/Slider_WiFi.ino +++ b/examples/Blinker_Slider/Slider_WiFi/Slider_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -61,10 +68,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_Summary/Summary_WiFi/Summary_WiFi.ino b/examples/Blinker_Summary/Summary_WiFi/Summary_WiFi.ino index 53cb1850..77af3a4b 100644 --- a/examples/Blinker_Summary/Summary_WiFi/Summary_WiFi.ino +++ b/examples/Blinker_Summary/Summary_WiFi/Summary_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -81,10 +88,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_Switch/Switch_BLE/Switch_BLE.ino b/examples/Blinker_Switch/Switch_BLE/Switch_BLE.ino index e39c6891..84b0484c 100644 --- a/examples/Blinker_Switch/Switch_BLE/Switch_BLE.ino +++ b/examples/Blinker_Switch/Switch_BLE/Switch_BLE.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_BLE #include @@ -47,10 +54,7 @@ void switch_callback(const String & state) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_Switch/Switch_WiFi/Switch_WiFi.ino b/examples/Blinker_Switch/Switch_WiFi/Switch_WiFi.ino index 639ed64d..1b0b71ba 100644 --- a/examples/Blinker_Switch/Switch_WiFi/Switch_WiFi.ino +++ b/examples/Blinker_Switch/Switch_WiFi/Switch_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -51,10 +58,7 @@ void switch_callback(const String & state) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_TEXT/TEXT_BLE/TEXT_BLE.ino b/examples/Blinker_TEXT/TEXT_BLE/TEXT_BLE.ino index 97b84c42..49469407 100644 --- a/examples/Blinker_TEXT/TEXT_BLE/TEXT_BLE.ino +++ b/examples/Blinker_TEXT/TEXT_BLE/TEXT_BLE.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_BLE #include @@ -52,10 +59,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_TEXT/TEXT_WiFi/TEXT_WiFi.ino b/examples/Blinker_TEXT/TEXT_WiFi/TEXT_WiFi.ino index c3383541..422370fa 100644 --- a/examples/Blinker_TEXT/TEXT_WiFi/TEXT_WiFi.ino +++ b/examples/Blinker_TEXT/TEXT_WiFi/TEXT_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -56,11 +63,8 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif - + BLINKER_DEBUG.stream(Serial); + pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_Time/Time_WiFi/Time_WiFi.ino b/examples/Blinker_Time/Time_WiFi/Time_WiFi.ino index ff053b56..b345ee8e 100644 --- a/examples/Blinker_Time/Time_WiFi/Time_WiFi.ino +++ b/examples/Blinker_Time/Time_WiFi/Time_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -60,10 +67,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_Joystick/Joystick_WiFi/Joystick_WiFi.ino b/examples/Blinker_WECHAT/WECHAT_WiFi/WECHAT_WiFi.ino similarity index 72% rename from examples/Blinker_Joystick/Joystick_WiFi/Joystick_WiFi.ino rename to examples/Blinker_WECHAT/WECHAT_WiFi/WECHAT_WiFi.ino index 885ac531..8efe2959 100644 --- a/examples/Blinker_Joystick/Joystick_WiFi/Joystick_WiFi.ino +++ b/examples/Blinker_WECHAT/WECHAT_WiFi/WECHAT_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -34,45 +41,34 @@ char auth[] = "Your Device Secret Key"; char ssid[] = "Your WiFi network SSID or name"; char pswd[] = "Your WiFi network WPA password or WEP key"; -#define JOY_1 "JOYKey" - -BlinkerJoystick JOY1(JOY_1); - -void joystick1_callback(uint8_t xAxis, uint8_t yAxis) -{ - BLINKER_LOG("Joystick1 X axis: ", xAxis); - BLINKER_LOG("Joystick1 Y axis: ", yAxis); -} - void dataRead(const String & data) { BLINKER_LOG("Blinker readString: ", data); - Blinker.vibrate(); - uint32_t BlinkerTime = millis(); - Blinker.print(BlinkerTime); + + Blinker.vibrate(); Blinker.print("millis", BlinkerTime); + + digitalWrite(LED_BUILTIN, !digitalRead(LED_BUILTIN)); + Blinker.wechat("Hello blinker!"); + + Blinker.delay(60000); } void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); Blinker.begin(auth, ssid, pswd); Blinker.attachData(dataRead); - - JOY1.attach(joystick1_callback); } void loop() { Blinker.run(); -} +} \ No newline at end of file diff --git a/examples/Blinker_WS2812/WS2812_BLE/WS2812_BLE.ino b/examples/Blinker_WS2812/WS2812_BLE/WS2812_BLE.ino index 73b787d9..899d4c74 100644 --- a/examples/Blinker_WS2812/WS2812_BLE/WS2812_BLE.ino +++ b/examples/Blinker_WS2812/WS2812_BLE/WS2812_BLE.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_BLE #include @@ -64,10 +71,7 @@ void ws2812_callback(uint8_t r_value, uint8_t g_value, uint8_t b_value, uint8_t void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_WS2812/WS2812_WiFi/WS2812_WiFi.ino b/examples/Blinker_WS2812/WS2812_WiFi/WS2812_WiFi.ino index 38e68107..2a726860 100644 --- a/examples/Blinker_WS2812/WS2812_WiFi/WS2812_WiFi.ino +++ b/examples/Blinker_WS2812/WS2812_WiFi/WS2812_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -68,10 +75,7 @@ void ws2812_callback(uint8_t r_value, uint8_t g_value, uint8_t b_value, uint8_t void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); diff --git a/examples/Blinker_Weather/Weather_WiFi/Weather_WiFi.ino b/examples/Blinker_Weather/Weather_WiFi/Weather_WiFi.ino index 249a38ee..a87b5190 100644 --- a/examples/Blinker_Weather/Weather_WiFi/Weather_WiFi.ino +++ b/examples/Blinker_Weather/Weather_WiFi/Weather_WiFi.ino @@ -9,6 +9,10 @@ * You can easily build graphic interfaces for all your * projects by simply dragging and dropping widgets. * + * Make sure installed 2.5.0 or later ESP8266/Arduino package, + * if use ESP8266 with Blinker. + * https://github.com/esp8266/Arduino/releases + * * Docs: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * @@ -18,14 +22,17 @@ * https://github.com/blinker-iot/blinker-library/archive/master.zip * * Blinker 是一个运行在 IOS 和 Android 上用于控制嵌入式硬件的应用程序。 - * 你可以通过拖放控制组件,轻松地为你的项目建立图形化控制界面。 + * 你可以通过拖放控制组件, 轻松地为你的项目建立图形化控制界面。 + * + * 如果使用 ESP8266 接入 Blinker, + * 请确保安装了 2.5.0 或更新的 ESP8266/Arduino 支持包。 + * https://github.com/esp8266/Arduino/releases * * 文档: https://doc.blinker.app/ * https://github.com/blinker-iot/blinker-doc/wiki * * *****************************************************************/ -#define BLINKER_PRINT Serial #define BLINKER_WIFI #include @@ -53,10 +60,7 @@ void dataRead(const String & data) void setup() { Serial.begin(115200); - - #if defined(BLINKER_PRINT) - BLINKER_DEBUG.stream(BLINKER_PRINT); - #endif + BLINKER_DEBUG.stream(Serial); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW);