| 12345678910111213141516171819202122232425262728 |
- ; PlatformIO Project Configuration File for Mirror HUD Display
- ;
- ; XIAO ESP32-C3 with 1.51 Transparent OLED SSD1309
- ; BLE Server receiving battery and speed data from glove
- [platformio]
- default_envs = seeed_xiao_esp32c3
- [env:seeed_xiao_esp32c3]
- platform = espressif32
- board = seeed_xiao_esp32c3
- framework = arduino
- monitor_speed = 115200
- lib_deps =
- olikraus/U8g2@^2.34.22
- h2zero/NimBLE-Arduino @ ^1.4.1
- build_flags =
- -DCORE_DEBUG_LEVEL=3
- -DCONFIG_ESP_COEX_SW_COEXIST_ENABLE
- -DARDUINO_USB_CDC_ON_BOOT=1
- -DCONFIG_BT_NIMBLE_ENABLED=1
- -DCONFIG_BT_BLE_ENABLED=1
- -DCONFIG_BLUEDROID_ENABLED=0
- -DCONFIG_BT_BLUEDROID_ENABLED=0
- lib_ignore =
- BLE
- upload_protocol = esptool
- monitor_filters = esp32_exception_decoder
|