11 lines
210 B
C
11 lines
210 B
C
#ifndef BUTTONS_H
|
|
#define BUTTONS_H
|
|
|
|
#include <zephyr/device.h>
|
|
#include <zephyr/devicetree.h>
|
|
#include <zephyr/drivers/gpio.h>
|
|
|
|
#define SW0_NODE DT_ALIAS(sw0)
|
|
extern const struct gpio_dt_spec button0;
|
|
|
|
#endif |