Appron Smart Link APK
最新版本
v6.0 for Windows
更新
2023年January23日
信息
版 v6.0 (#6)
更新 2023年January23日
APK檔案大小 1.5 MB
Android 最低版本需求 Android 4.0+ (Ice Cream Sandwich)
開發人員 APPRON
類別 工具 (應用)
應用 ID com.appron.smartlink
開發者備註 Smart utility to connect Appron smart devices to WiFi
螢幕截圖圖片
點擊圖像以查看完整尺寸
最新異動
Appron Smart Link v6.0的新功能
Updated Version.
內容描述
Utility to connect appron smart devices to WiFi . After sucsessful smart linking we will get IP of the linked device. We can use Appron PortViewer or other appron tools to test/config the device. We can also use any terminal tool like putty.
Appron Smart Link also support ESP8266 modules like ESP01 , NodeMCU ,etc which enabled WiFi smartconfig mode .
use bellow code to enable smart config in ESP8266 modules
#include ;
void setup() {
Serial.begin(115200);
delay(10);
WiFi.mode(WIFI_STA);
delay(500);
WiFi.beginSmartConfig();
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
Serial.println(WiFi.smartConfigDone());
}
Serial.println("");
Serial.println("WiFi connected");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
}
int value = 0;
void loop() {
}
Appron Smart Link also support ESP8266 modules like ESP01 , NodeMCU ,etc which enabled WiFi smartconfig mode .
use bellow code to enable smart config in ESP8266 modules
#include ;
void setup() {
Serial.begin(115200);
delay(10);
WiFi.mode(WIFI_STA);
delay(500);
WiFi.beginSmartConfig();
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
Serial.println(WiFi.smartConfigDone());
}
Serial.println("");
Serial.println("WiFi connected");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
}
int value = 0;
void loop() {
}
評分和評論
評分:1.0 / 5 · Less than 100 票
(*) 是必須的