This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| java -jar /root/blynk/server-0.41.16-java8.jar -dataFolder /root/blynk/data -serverConfig /root/blynk/server.properties -mailConfig /root/blynk/mail.properties |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mail.smtp.starttls.enable=true | |
| mail.smtp.port=587 | |
| mail.smtp.auth=true | |
| mail.smtp.host=smtp.gmail.com | |
| mail.smtp.username=xxxxxxxxxx@gmail.com | |
| mail.smtp.password=xxxxxxxxxx | |
| mail.smtp.timeout=120000 | |
| mail.smtp.connectiontimeout=30000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| initial.energy=10000000 | |
| allow.reading.widget.without.active.app=false | |
| user.message.quota.limit=100 | |
| logs.folder=./logs | |
| user.dashboard.max.limit=100 | |
| lcd.strings.pool.size=6 | |
| server.ssl.key= | |
| webhooks.response.size.limit=96 | |
| hardware.mqtt.port=8440 | |
| table.rows.pool.size=100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <BlynkGOv2.h> | |
| #include "esp_wpa2.h" | |
| #define SSID "---------------" | |
| #define EAP_IDENTITY "---------------" //username | |
| #define EAP_PASSWORD "---------------" //password | |
| #define LINE_TOKEN "---------------" | |
| GWiFiManager wifi_manager; | |
| GLabel lb_clock; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * SenEYE เซนเซอร์สำหรับวัดคุณภาพน้ำตู้ปลา นำมาแสดงผลบนบอร์ด BlynkGO + จอ 3.5" | |
| */ | |
| #include <BlynkGO.h> | |
| #include <WiFi.h> | |
| #include <TridentTD_SENEYE.h> | |
| #define BLYNKGO_KEY "--------------------" // Key สำหรับบอร์ด BlynkGO | |
| #define SSID "--------------------" // SSID ของ WiFi | |
| #define PASSWORD "--------------------" // Password ของ WiFi |
NewerOlder