Skip to content

Commit

Permalink
add support for platformio
Browse files Browse the repository at this point in the history
  • Loading branch information
bimac committed Oct 9, 2024
1 parent 3eee4db commit 98eed26
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions firmware/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.pio
.vscode/.browse.c_cpp.db*
.vscode/c_cpp_properties.json
.vscode/launch.json
.vscode/ipch
10 changes: 10 additions & 0 deletions firmware/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
// 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"
]
}
4 changes: 4 additions & 0 deletions firmware/platformio.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[env:attiny85]
platform = atmelavr
board = attiny85
framework = arduino
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
Upload w/USBtinyISP
*/

#include <Arduino.h>
#include "EEPROM.h"

#define led 1
Expand Down

0 comments on commit 98eed26

Please sign in to comment.