You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
203 B
11 lines
203 B
#ifndef _HARDWARE_H
|
|
#define _HARDWARE_H
|
|
|
|
#define WIFI_SSID "ssid"
|
|
#define WIFI_PASSWORD "password"
|
|
|
|
#define LED_BUILTIN 13
|
|
|
|
static constexpr int SERVO_PINS[] = {5, 18, 24, 25};
|
|
|
|
#endif /* _HARDWARE_H */
|
|
|