Search found 3 matches
- Sat Mar 12, 2022 2:52 pm
- Forum: General Discussion
- Topic: esp32 sdcard reliable problem
- Replies: 0
- Views: 1203
esp32 sdcard reliable problem
My chip is esp32u when i use spi to control tft-lcd/tft-touch/sdcard, it can work. but run a long time.(about 96hr) the sdcard sometimes sd.begin will return 0x1 error. next recall sd.begin() will all return 0x3. if i reinsert sdcard in sdcard holder, the sd.begin() will return good. but run about 9...
- Wed Dec 22, 2021 9:38 am
- Forum: ESP32 Arduino
- Topic: Does Line-Notify can use freertos to post message?
- Replies: 0
- Views: 3984
Does Line-Notify can use freertos to post message?
I finish esp32 to post line message. but if i pass a message, the main will dely 1~2s. this is my program WiFiClientSecure lineClient; String Linetoken = "--------------------------------------------"; char host[] = "notify-api.line.me"; bool isConnectLine = false; void SendLineMessage() { String me...
- Mon Mar 29, 2021 4:38 pm
- Forum: ESP32 Arduino
- Topic: Is ESP32-DevKitC V4 IO25,26,16,17,0 can not as gpio output?
- Replies: 1
- Views: 3144
Is ESP32-DevKitC V4 IO25,26,16,17,0 can not as gpio output?
My board is ESP32-DevKitC V4.(WROVER-B) this is my code [Codebox] void setup() { pinMode(25,OUTPUT); pinMode(26,OUTPUT); pinMode(16,OUTPUT); pinMode(17,OUTPUT); pinMode(0,OUTPUT); } void loop() { digitalWrite(25, LOW); digitalWrite(26, LOW); digitalWrite(16, LOW); digitalWrite(17, LOW); digitalWrite...