Serial2.ino 529 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Heltec Automation ESP32 Serial 2 example.
  3. * work with ESP32's IO MUX
  4. */
  5. //HardwareSerial Serial2(2);
  6. void setup() {
  7. Serial.begin(115200);
  8. // Serial2.begin(unsigned long baud, uint32_t config, int8_t rxPin, int8_t txPin, bool invert)
  9. // The txPin & rxPin can set to any output pin
  10. Serial2.begin(115200, SERIAL_8N1, 18, 17);
  11. }
  12. void loop() {
  13. if(Serial.available()) {
  14. int ch = Serial.read();
  15. Serial2.write(ch);
  16. }
  17. if(Serial2.available()) {
  18. int ch = Serial2.read();
  19. Serial.write(ch);
  20. }
  21. }