diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 0f0d740..080e70d 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,7 +1,10 @@ -{ - // See http://go.microsoft.com/fwlink/?LinkId=827846 - // for the documentation about the extensions.json format - "recommendations": [ - "platformio.platformio-ide" - ] -} +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "platformio.platformio-ide" + ], + "unwantedRecommendations": [ + "ms-vscode.cpptools-extension-pack" + ] +} diff --git a/platformio.ini b/platformio.ini index 83d2f5a..36bace2 100644 --- a/platformio.ini +++ b/platformio.ini @@ -8,9 +8,9 @@ ; Please visit documentation for the other options and examples ; https://docs.platformio.org/page/projectconf.html -[env:nanoatmega328] +[env:nanoatmega328new] platform = atmelavr -board = nanoatmega328 +board = nanoatmega328new framework = arduino debug_tool = simavr lib_deps = diff --git a/tools/control_servo_with_serial.cpp b/tools/control_servo_with_serial.cpp index 512f10a..58166ee 100644 --- a/tools/control_servo_with_serial.cpp +++ b/tools/control_servo_with_serial.cpp @@ -1,11 +1,3 @@ - - -/** - * Blink - * - * Turns on an LED on for one second, - * then off for one second, repeatedly. - */ #include "Arduino.h" #include @@ -32,19 +24,6 @@ void setup() void loop() { -// // turn the LED on (HIGH is the voltage level) -// digitalWrite(LED_BUILTIN, HIGH); -// //Serial.println("led is high"); - -// // wait for a second -// delay(1000); - -// // turn the LED off by making the voltage LOW -// digitalWrite(LED_BUILTIN, LOW); -// Serial.println("led is low"); - -// // wait for a second -// delay(1000); if (handleInp == true) { digitalWrite(LED_BUILTIN, HIGH);