-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
38 lines (34 loc) · 1.19 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
31
32
33
34
35
36
37
38
;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 = [email protected]
upload_protocol = espota
board = esp32dev
framework = arduino
upload_port = 'MVESP.local' ; MatrixVoice ESP32 LAN name
build_flags =
'-DWIFI_SSID="YOUR_SSID_HERE"' ; ==> CHANGE IT!
'-DWIFI_PASS="YOUR_PASSWORD_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
https://github.com/mozilla-iot/webthing-arduino.git
ESP Async WebServer
ESP32 AnalogWrite
lib_ignore = WiFi101
lib_ldf_mode = deep+
monitor_speed = 115200