Skip to content

Instantly share code, notes, and snippets.

@lomassubedi
Created February 25, 2019 06:01
Show Gist options
  • Select an option

  • Save lomassubedi/4fed72cafeee564c2d1b1b3c2eaf2f24 to your computer and use it in GitHub Desktop.

Select an option

Save lomassubedi/4fed72cafeee564c2d1b1b3c2eaf2f24 to your computer and use it in GitHub Desktop.

Revisions

  1. lomassubedi created this gist Feb 25, 2019.
    9 changes: 9 additions & 0 deletions serial_echo_arduino
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    void setup() {
    Serial.begin(115200);
    }

    void loop() {
    while(Serial.available() > 0) {
    Serial.write(Serial.read());
    }
    }