18 lines
256 B
C
18 lines
256 B
C
#include <stdio.h>
|
|
#include "iot_button.h"
|
|
#include "button_gpio.h"
|
|
#include "esp_log.h"
|
|
#include "esp_err.h"
|
|
#include "esp_check.h"
|
|
#include "buttons/buttons.h"
|
|
|
|
static const char* TAG = "TrainThing";
|
|
|
|
void app_main(void)
|
|
{
|
|
initialize_buttons();
|
|
|
|
}
|
|
|
|
|