1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards/esp32-ttgo-t-beam/include/arduino_board.h
Yegor Yefremov 8101f52e3f boards/esp32: add TTGO T-Beam board definition
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
2020-01-10 10:04:38 +01:00

41 lines
766 B
C

/*
* Copyright (C) 2019 Yegor Yefremov
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup boards_esp32_ttgo-t-beam
* @{
*
* @file
* @brief Board specific configuration for the Arduino API
*
* @author Yegor Yefremov <yegorslists@googlemail.com>
*/
#ifndef ARDUINO_BOARD_H
#define ARDUINO_BOARD_H
#include "arduino_board_common.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief The on-board LED is connected to Arduino pin 3 on this board
*/
#ifndef MODULE_ESP32_TTGO_T_BEAM_V1_0
#define ARDUINO_LED (3)
#endif
#ifdef __cplusplus
}
#endif
#endif /* ARDUINO_BOARD_H */
/** @} */