我终于成功地将我的 Deauther 手表连接到 Arduino IDE。当我在串行监视器中输入“信息”时,我收到以下消息:
代码:
全选# info
====================================================================================
ESP8266 Deauther 2.6.0
2018 (c) Stefan Kremser
This software is licensed under the MIT License.
For more informa
tion please visit github.com/spacehuhn/esp8266_deauther
====================================================================================
现在我想给我的手表编程。最好使用 python,但我不知道如何将 Arduino IDE 切换为 python。无论如何,我安装了
开发板软件并将其更改为“Board: DSTIKE Deauther”,但是当我要上传我的 Hello World 程序时,没有任何反应:
代码:
全选#include
void setup() {
// put your setup code here, to run once:
std::cout << "Hallo Horst!";
}
void loop() {
// put your main code here, to run repeatedly:
}
我现在如何对手表进行编程?