Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void setup() {
- // put your setup code here, to run once:
- }
- void loop() {
- // put your main code here, to run repeatedly:
- char c;
- if (Serial.available()) {
- c = Serial.read();
- if(c == '\n') {
- Serial.println("Change Line");
- }
- else {
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement