I have finally managed to connect my Deauther watch to the Arduino IDE. When I enter "info" in the serial monitor, I get the following message:
# info
====================================================================================
ESP8266 Deauther 2.6.0
2018 (c) Stefan Kremser
This software is licensed under the MIT License.
For more information please visit github.com/spacehuhn/esp8266_deauther
====================================================================================
Now I would like to program my watch. Preferably with python, but I don't know how to switch the Arduino IDE to python. Anyway, I installed the board software and changed it to "Board: DSTIKE Deauther", but when I want to upload my Hello World program, nothing happens:
#include <iostream>
void setup() {
// put your setup code here, to run once:
std::cout << "Hallo Horst!";
}
void loop() {
// put your main code here, to run repeatedly:
}
How do I get the watch programmed now?
Many greetings
Horst