summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorAleksa Vučković <56649122+aleksav013@users.noreply.github.com>2023-03-10 22:55:42 +0000
committerGitHub <noreply@github.com>2023-03-10 22:55:42 +0000
commit01905c85caf85f658e6efff8672d873e7a5fd8ad (patch)
tree2782af11a61f1f3f828d568019174d67a9fed26f /config.h
parent30a0aafd0feb6615b17bd226ba82010a6aaeb20b (diff)
parentf6ebc8903c51435cccfc95915f75d96f73f16fa7 (diff)
Merge pull request #2 from vmisovic/masterHEADmaster
vladin deo
Diffstat (limited to 'config.h')
-rw-r--r--config.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/config.h b/config.h
deleted file mode 100644
index fe639e9..0000000
--- a/config.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef CONFIG_H
-#define CONFIG_H
-
-#include <stdint.h>
-
-// define the pins used controlling 74HC595
-#define DATA_PIN 2
-#define CLOCK_PIN 3
-#define LATCH_PIN 4
-#define LED_PIN 25
-
-// define the order of 74HC595 chain
-#define CHIP_0 0
-#define CHIP_1 1
-#define CHIP_2 3
-#define CHIP_3 5
-#define CHIP_4 7
-#define CHIP_5 8
-#define CHIP_6 6
-#define CHIP_7 4
-#define CHIP_8 2
-
-extern uint8_t map[9];
-
-#endif