
| รหัสสินค้า | M3810 |
| หมวดหมู่ | ESP32 ESP-32 |
| ราคา | 200.00 บาท |
| น้ำหนัก | 40 กรัม |
| ลงสินค้า | 6 ก.ย. 2564 |
| อัพเดทล่าสุด | 9 ก.ย. 2565 |

NodeMCU: https://github.com/nodemcu/nodemcu-firmware/tree/dev-esp32
Arduino: https://github.com/espressif/arduino-esp32



1.4.1 CPU and Memory
|
|
/*
* There are three serial ports on the ESP known as U0UXD, U1UXD and U2UXD.
*
* U0UXD is used to communicate with the ESP32 for programming and during reset/boot.
* U1UXD is unused and can be used for your projects. Some boards use this port for SPI Flash access though
* U2UXD is unused and can be used for your projects.
*
*/
#define RXD2 16
#define TXD2 17
void setup() {
// Note the format for setting a serial port is as follows: Serial2.begin(baud-rate, protocol, RX pin, TX pin);
Serial.begin(115200);
//Serial1.begin(9600, SERIAL_8N1, RXD2, TXD2);
Serial2.begin(9600, SERIAL_8N1, RXD2, TXD2);
Serial.println("Serial Txd is on pin: "+String(TX));
Serial.println("Serial Rxd is on pin: "+String(RX));
}
void loop() { //Choose Serial1 or Serial2 as required
while (Serial2.available()) {
Serial.print(char(Serial2.read()));
}
}
|
| หน้าที่เข้าชม | 5,184,012 ครั้ง |
| ผู้ชมทั้งหมด | 1,583,352 ครั้ง |
| ร้านค้าอัพเดท | 2 พ.ย. 2568 |