TTGO T-Beam is an ESP32 development board with 4 MB Flash that uses
the EPS32 chip directly. It integrates:
a SemTech SX1276 or SX1278 for LoRaWAN communication
a U-Blox Neo-6M GPS receiver
There are at least three board types: rev0, rev1, and V1.0. Versions
rev0 and rev1 are very similar, the only difference is that rev1 has
an additional LED connected to GPIO14. The pinout of V1.0 has more
changes thus it is necessary to add the following line to the makefile
of the application to use the according configuration for TTGO T-Beam V1.0:
TTGO T-Beam has the following on-board components:
SemTech SX1276 or SX1278 for LoRaWAN communication
U-Blox Neo-6M GPS receiver
There are two hardware versions of the board:
SemTech SX1278 for LoRaWAN communication in the 433 MHz band
SemTech SX1276 for LoRaWAN communication in the 868/915 MHz band
Since many GPIOs are broken out, they can be used for different purposes
in different applications. For flexibility, some GPIOs might be listed in
various peripheral configurations. For example, GPIO0 is used in the ADC
channel definition ADC_GPIOS and the PWM channel definition
PWM0_GPIOS.
This is possible because GPIOs are only used for a specific peripheral
interface when
the corresponding peripheral module is used, e.g., module periph_i2c, or
a corresponding init function is called e.g., adc_init, dac_init
and pwm_init, or
the corresponding peripheral interface is used for the first time, e.g.,
spi_acquire.
That is, the purpose for which a GPIO is actually used depends on which module
or function is used first.
Note: GPIOs 5, 12, 15, 16, 17, 18, 19, 26, and 27 are
used for board control functions and should not be used for other purposes
unless you exactly know what you are doing.
The following table shows the default board configuration, which is sorted
according to the defined functionality of GPIOs. This configuration can be
overridden by esp32_application_specific_configurations
“application-specific configurations”.
TTGO- T-Beam rev1
Function | GPIOs | Remarks |Configuration
:---------------|:-------|:--------|:----------------------------------
BUTTON0 | GPIO39 | low active | |
LED0 | GPIO14 | high active | |
ADC | GPIO0, GPIO2, GPIO4, GPIO13,\n GPIO25, GPIO32, GPIO33, GPIO35,\n GPIO36, GPIO34 | | esp32_adc_channels "ADC Channels"
DAC | GPIO25 | | esp32_dac_channels "DAC Channels"
PWM_DEV(0) | GPIO14, GPIO0, GPIO2, GPIO25 | | esp32_pwm_channels "PWM Channels"
I2C_DEV(0):SDA | GPIO21 | | esp32_i2c_interfaces "I2C Interfaces"
I2C_DEV(0):SCL | GPIO22 | I2C_SPEED_FAST is used | esp32_i2c_interfaces "I2C Interfaces"
SPI_DEV(0):CLK | GPIO5 | VSPI is used | esp32_spi_interfaces "SPI Interfaces"
SPI_DEV(0):MISO | GPIO19 | VSPI is used | esp32_spi_interfaces "SPI Interfaces"
SPI_DEV(0):MOSI | GPIO27 | VSPI is used | esp32_spi_interfaces "SPI Interfaces"
SPI_DEV(0):CS0 | GPIO18 | VSPI is used | esp32_spi_interfaces "SPI Interfaces"
UART_DEV(0):TxD | GPIO1 | Console (configuration is fixed) | esp32_uart_interfaces "UART interfaces"
UART_DEV(0):RxD | GPIO3 | Console (configuration is fixed) | esp32_uart_interfaces "UART interfaces"
UART_DEV(1):TxD | GPIO15 | GPS (configuration is fixed) | esp32_uart_interfaces "UART interfaces"
UART_DEV(1):RxD | GPIO12 | GPS (configuration is fixed) | esp32_uart_interfaces "UART interfaces"
Flashing RIOT is quite easy. The board has a Micro-USB connector with
reset/boot/flash logic. Just connect the board to your host computer and type
using the programming port:
make flash BOARD=esp32-ttgo-t-beam ...
For detailed information about ESP32 as well as configuring and compiling
RIOT for ESP32 boards, see esp32_riot.