Feld gedreht

This commit is contained in:
nimeissn 2022-02-16 19:34:30 +01:00
parent a88eab9ee5
commit 85e5857a15
6 changed files with 58 additions and 47 deletions

View file

@ -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"
]
}

View file

@ -9,8 +9,7 @@
; https://docs.platformio.org/page/projectconf.html
[env:nanoatmega328new]
platform = atmelavr
board = nanoatmega328
board = esp32dev
framework = arduino
lib_deps =
adafruit/Adafruit NeoMatrix@^1.2.0

View file

@ -33,8 +33,8 @@ Example sketch for driving Adafruit WS2801 pixels!
// Can be any valid output pins.
// The colors of the wires may be totally different so
// BE SURE TO CHECK YOUR PIXELS TO SEE WHICH WIRES TO USE!
uint8_t dataPin = 6; // Yellow wire on Adafruit Pixels
uint8_t clockPin = 3; // Green wire on Adafruit Pixels
uint8_t dataPin = 2; // Yellow wire on Adafruit Pixels
uint8_t clockPin = 4; // Green wire on Adafruit Pixels
// Don't forget to connect the ground wire to Arduino ground,
// and the +5V wire to a +5V supply