-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplatformio.ini
32 lines (27 loc) · 1.01 KB
/
platformio.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
;PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[env:esp32dev]
platform = espressif32@1.9.0
upload_protocol = espota
board = esp32dev
framework = arduino
upload_port = 'MVESP.local' ; MatrixVoice ESP32 LAN name
build_flags =
'-DWIFI_SSID="SSID_GOES_HERE"' ; ==> CHANGE IT!
'-DWIFI_PASS="PASSWORD_GOES_HERE"' ; ==> CHANGE IT!
'-DMVID="MVESP"' ; MV LAN name, max 8 chars
'-DMVPASS="voice"' ; MatrixVoice OTA password
upload_flags =
--port=3232
--auth=voice ; MatrixVoice OTA password
--f=.pio/build/esp32dev/firmware.bin
lib_deps =
https://github.com/matrix-io/matrixio_hal_esp32.git
https://github.com/matrix-io/esp32-arduino-ota.git