11 lines
159 B
C
11 lines
159 B
C
![]() |
#ifndef BOARD_H
|
||
|
#define BOARD_H
|
||
|
|
||
|
#define LED_PIN 33 // P1.1
|
||
|
#define LED_STATE_ON 1
|
||
|
|
||
|
#define BUTTON_PIN 6
|
||
|
#define BUTTON_STATE_ACTIVE 1
|
||
|
|
||
|
#endif
|