This commit is contained in:
hugo LAMY
2025-03-10 10:19:42 +01:00
parent 7459a2155c
commit 73bb93d96f
3 changed files with 38 additions and 20 deletions

View File

@@ -41,13 +41,19 @@
#define D4 4
#define SW1 2
#define SW2 4
#define D5B 3
#define D5R 5
#define D5G 6
// Elements (port, bit)
#define LED1 (B, D1)
#define LED2 (B, D2)
#define LED3 (B, D3)
#define LED4 (B, D4)
#define BUTTON1 (D, SW1)
#define BUTTON2 (D, SW2)
#define LED1 (B, D1)
#define LED2 (B, D2)
#define LED3 (B, D3)
#define LED4 (B, D4)
#define BUTTON1 (D, SW1)
#define BUTTON2 (D, SW2)
#define RGB5_BLUE (D, D5B)
#define RGB5_RED (D, D5R)
#define RGB5_GEEN (D, D5G)
#endif // BITMANIP_H