Some checks failed
ESP-IDF Build / build (esp32c6, release-v5.4) (push) Failing after 2m23s
ESP-IDF Build / build (esp32c6, release-v5.5) (push) Failing after 6m1s
ESP-IDF Build / build (esp32s3, release-v5.4) (push) Failing after 2m17s
ESP-IDF Build / build (esp32s3, release-v5.5) (push) Failing after 5m57s
Signed-off-by: Peter Siegmund <developer@mars3142.org>
11 lines
360 B
C
11 lines
360 B
C
#pragma once
|
|
|
|
#include "driver/gpio.h"
|
|
|
|
#define BUTTON_UP ((gpio_num_t)CONFIG_BUTTON_UP)
|
|
#define BUTTON_DOWN ((gpio_num_t)CONFIG_BUTTON_DOWN)
|
|
#define BUTTON_LEFT ((gpio_num_t)CONFIG_BUTTON_LEFT)
|
|
#define BUTTON_RIGHT ((gpio_num_t)CONFIG_BUTTON_RIGHT)
|
|
#define BUTTON_SELECT ((gpio_num_t)CONFIG_BUTTON_SELECT)
|
|
#define BUTTON_BACK ((gpio_num_t)CONFIG_BUTTON_BACK)
|