hardcode in/out topics, add chat example

This commit is contained in:
2018-11-19 20:31:34 +01:00
parent e1d605c615
commit a195307fc1
6 changed files with 157 additions and 31 deletions

View File

@@ -1,5 +1,5 @@
[platformio]
env_default = basic
env_default = basic, chat
[common]
framework = arduino
@@ -23,5 +23,15 @@ board = ${common.board}
upload_speed = ${common.upload_speed}
monitor_baud = ${common.monitor_baud}
framework = ${common.framework}
lib_deps = ${common.lib_deps}
PubSubClient
[env:chat]
src_filter = +<*> -<examples/> +<examples/chat/>
platform = ${common.platform}
board = ${common.board}
upload_speed = ${common.upload_speed}
monitor_baud = ${common.monitor_baud}
framework = ${common.framework}
lib_deps = ${common.lib_deps}
PubSubClient