Skip to content

Instantly share code, notes, and snippets.

@neosarchizo
Created November 8, 2022 05:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neosarchizo/de47a1856f10949097cf6299bd358732 to your computer and use it in GitHub Desktop.
Save neosarchizo/de47a1856f10949097cf6299bd358732 to your computer and use it in GitHub Desktop.
DSLogic - UART 디버깅하기
#include <SoftwareSerial.h>
SoftwareSerial mySerial(2, 3); // RX, TX
void setup() {
mySerial.begin(9600);
}
void loop() {
mySerial.println("Hello DSLogic!!");
delay(500);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment