From 92c63560d60c6660b8a734b9846fd12b32b1d993 Mon Sep 17 00:00:00 2001 From: DashyFox Date: Tue, 12 Sep 2023 11:46:42 +0300 Subject: [PATCH] IR_ini --- .gitignore | 2 ++ .vscode/arduino.json | 5 +++++ IR.ino | 9 +++++++++ 3 files changed, 16 insertions(+) create mode 100644 .gitignore create mode 100644 .vscode/arduino.json create mode 100644 IR.ino diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d833061 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.vscode/* +!.vscode/arduino.json \ No newline at end of file diff --git a/.vscode/arduino.json b/.vscode/arduino.json new file mode 100644 index 0000000..35ff5f8 --- /dev/null +++ b/.vscode/arduino.json @@ -0,0 +1,5 @@ +{ + "port": "COM3", + "board": "arduino:avr:uno", + "sketch": "IR.ino" +} \ No newline at end of file diff --git a/IR.ino b/IR.ino new file mode 100644 index 0000000..11269cb --- /dev/null +++ b/IR.ino @@ -0,0 +1,9 @@ +#define SerialSpeed 115200 + +void setup() { +Serial.begin(SerialSpeed); +} + +void loop() { + +} \ No newline at end of file