Created skeleton for the tester program.
This commit is contained in:
parent
86a02fdf95
commit
d5a27c630f
2 changed files with 18 additions and 0 deletions
|
|
@ -1,3 +1,5 @@
|
||||||
|
// This code is meant to be used on an Arduino Nano or Uno.
|
||||||
|
|
||||||
#define SHIFT_DATA 2
|
#define SHIFT_DATA 2
|
||||||
#define SHIFT_CLK 3
|
#define SHIFT_CLK 3
|
||||||
#define SHIFT_LATCH 4
|
#define SHIFT_LATCH 4
|
||||||
16
arduino_programs/arduino_tester/arduino_tester.ino
Normal file
16
arduino_programs/arduino_tester/arduino_tester.ino
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
// This program is supposed to be used with an arduino Mega.
|
||||||
|
#define DATA_0 2
|
||||||
|
#define DATA_7 9
|
||||||
|
|
||||||
|
#define OUTPUT_ENABLE 52
|
||||||
|
// Address pins jump increment by 2 for easier connections.
|
||||||
|
#define ADDRESS_0 22
|
||||||
|
#define ADDRESS_15 50
|
||||||
|
|
||||||
|
void setup() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void loop() {
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue