// If wifi is used, set the parameter to identify the access point (= the router when ESP32_ACT_AS_STATION or the ESP32 when ESP32_ACT_AS_AP)
#define MY_SSID "word1 word2" // replace by the name of your access point (when act as station) or the name you assign to your device (when act as acces point)
// Only for ESP32_ACT_AS_STATION , set the password to get access to your access point (router)
#define MY_PASSWORD "aBc1234?" // replace by the password of your access point (when act as station) or the password you want to use to protect your ESP32 (when act as acces point)
// in this last case, password can remains empty
// select your language between EN, FR, DE
#define LANGUAGE DE
我用最新的固件更新了我的 TFT。
当然,我编辑了 config.h 文件。
我的 WiFi 名称由两个由空格分隔的单词组成,例如:
word1 word2
密码由字母(大小写)、数字和特殊字符组成。
所以我的 config.h 看起来像:
当然这是虚构的值,但它应该显示情况。
请提及每个值所在的 ” – 它是正确的吗?
我认为它一定是这样工作的,但是当我启动我的 TFT 时,有时总是会显示错误。
错误 1“预期的 cmd 字母”或错误 2“数字格式错误”。
由于我的 WiFi 不工作(如 TFT 上所示),我认为这些错误与 WiFi 问题有关。