Feld gedreht
This commit is contained in:
parent
a88eab9ee5
commit
85e5857a15
6 changed files with 58 additions and 47 deletions
17
VSCode/Matrix/Ping Pong/.vscode/extensions.json
vendored
17
VSCode/Matrix/Ping Pong/.vscode/extensions.json
vendored
|
@ -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"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue