Search found 2 matches

by ZhengLinLei
Mon Apr 15, 2024 8:01 pm
Forum: ESP-IDF
Topic: Cannot connect to WIFI
Replies: 2
Views: 964

Cannot connect to WIFI

I'm getting some troubles with my code trying to connect to one Wifi station. I tried changing everything, copied samples from everywhere and nothing worked. The hardware works correctly, because I tried the Arduino IDE Code and it worked Code of the handler: /* FreeRTOS event group to signal when w...
by ZhengLinLei
Wed Mar 27, 2024 11:28 am
Forum: ESP-IDF
Topic: UART Communication
Replies: 1
Views: 2981

UART Communication

Can I communicate two esp32 with UART Serial connection using printf() and scanf() ? I want the code equivalent to this int incomingByte = 0; // for incoming serial data void setup() { Serial.begin(9600); // opens serial port, sets data rate to 9600 bps } void loop() { // send data only when you rec...