This commit is contained in:
DashyFox 2023-09-12 11:46:42 +03:00
commit 92c63560d6
3 changed files with 16 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.vscode/*
!.vscode/arduino.json

5
.vscode/arduino.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"port": "COM3",
"board": "arduino:avr:uno",
"sketch": "IR.ino"
}

9
IR.ino Normal file
View File

@ -0,0 +1,9 @@
#define SerialSpeed 115200
void setup() {
Serial.begin(SerialSpeed);
}
void loop() {
}