Skip to content

Commit

Permalink
Add new devices to platform.ini file
Browse files Browse the repository at this point in the history
  • Loading branch information
squix78 committed Mar 9, 2019
1 parent 9eb1c47 commit e1c5256
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
.piolibdeps
.clang_complete
.gcc-flags.json
.vscode
.vscode/*
26 changes: 21 additions & 5 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,33 @@
; Please visit documentation for the other options and examples
; http://docs.platformio.org/page/projectconf.html

[platformio]
env_default = esp32

[env:d1_mini]
platform = espressif8266
board = d1_mini
framework = arduino
upload_speed = 921600
monitor_speed = 115200
;board_f_cpu = 160000000L
;upload_resetmethod = ck
;lib_deps = XPT2046_Touchscreen

[env:esp_wroom_02]
platform = espressif8266
board = esp_wroom_02
framework = arduino
upload_speed = 921600
monitor_speed = 115200
;board_f_cpu = 160000000L
;upload_resetmethod = ck
;lib_deps = XPT2046_Touchscreen

;[env:esp32doit-devkit-v1]
;platform = [email protected]
;board = lolin32
;framework = arduino
;upload_speed = 460800
[env:esp32]
platform = espressif32
board = lolin32
framework = arduino
board_build.f_cpu = 40000000L
upload_speed = 921600
monitor_speed = 115200

0 comments on commit e1c5256

Please sign in to comment.