รหัสสินค้า | M3195 |
หมวดหมู่ | ESP32 ESP-32 |
ราคา | 85.00 บาท |
น้ำหนัก | 50 กรัม |
สถานะสินค้า | พร้อมส่ง |
ลงสินค้า | 20 เม.ย. 2563 |
อัพเดทล่าสุด | 22 ต.ค. 2565 |
จำนวน | ชิ้น |
|
/*
* 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,170,602 ครั้ง |
ผู้ชมทั้งหมด | 1,569,942 ครั้ง |
ร้านค้าอัพเดท | 16 ก.ย. 2568 |