commit a034f30587053fbcc4deae5c183413ade05ce7b4 parent 22b8d2bb864f472c612da1e18480712d5848922c Author: Samdal <samdal@protonmail.com> Date: Mon, 21 Jun 2021 22:31:45 +0200 removed test.cpp file Diffstat:
M | .gitignore | | | 1 | + |
D | test.cpp | | | 17 | ----------------- |
2 files changed, 1 insertion(+), 17 deletions(-)
diff --git a/.gitignore b/.gitignore @@ -3,3 +3,4 @@ tmp/ bin/ *.out *.o +*.cpp diff --git a/test.cpp b/test.cpp @@ -1,17 +0,0 @@ -#define AN_IMPL -#include "ArduinoNative.hpp" - -void setup() -{ - Serial.begin(9600); -#ifdef ArduinoNative - Serial.an_take_input(); -#endif -} - -void loop() -{ - while(Serial.available()) { - Serial.println((char)Serial.read()); - } -}