Closed
Description
Hardware:
Board: TTGO LoRa32-OLED V1
Board: Heltec_WIFI_LoRa_32
Core Installation/update date: esp32-1.0.0
Description:
Both of these files:
./packages/esp32/hardware/esp32/1.0.0/variants/heltec_wifi_lora_32/pins_arduino.h
./packages/esp32/hardware/esp32/1.0.0/variants/ttgo-lora32-v1/pins_arduino.h
define the following pin mappings:
static const uint8_t T8 = 32;
static const uint8_t T9 = 33;
static const uint8_t DAC1 = 26;
static const uint8_t DAC2 = 25;
Those definitions are at odds with (a) the ESP32 Datasheet, (b) the ESP32 Technical Reference manual and (c) every other board in the variants folder that defines T8, T9, DAC1 and DAC2 as:
static const uint8_t T8 = 33;
static const uint8_t T9 = 32;
static const uint8_t DAC1 = 25;
static const uint8_t DAC2 = 26;
In other words, these two LoRa boards appear to have swapped the GPIO pins for T8/T9 and DAC1/DAC2. I wondered if the Touch and DAC pins could somehow be re-mapped but I have not found anything to support that theory so I suspect that the definitions for these two LoRa boards could be wrong.
Metadata
Metadata
Assignees
Labels
No labels