forked from piotrC4/mqtt-ir-transceiver
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplatformio.ini
71 lines (61 loc) · 1.64 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#
# Project Configuration File
#
# A detailed documentation with the EXAMPLES is located here:
# http://docs.platformio.org/en/latest/projectconf.html
#
# STATUS: USABLE
# A sign `#` at the beginning of the line indicates a comment
# Comment lines are ignored.
# Simple and base environment
# [env:mybaseenv]
# platform = %INSTALLED_PLATFORM_NAME_HERE%
# framework =
# board =
#
# Automatic targets - enable auto-uploading
# targets = upload
# Usage of Display:
# DISPLAY_SIZE unset --> no DISPLAY_SIZE
# DISPLAY_SIZE=0 --> 128*64, 1 --> 128*32
[platformio]
env_default = esp12e
[env:esp01]
board = esp01_1m
build_flags = -D MQTT_MAX_PACKET_SIZE=1500 -D BOARD_ESP01
platform = espressif8266
framework = arduino
lib_deps =
ArduinoJson@~5.13
ESP8266_SSD1306
https://github.com/markszabo/IRremoteESP8266.git
PubSubClient
WifiManager
upload_port = /dev/ttyUSB0
[env:esp12e]
board = esp12e
#build_flags = -D MQTT_MAX_PACKET_SIZE=1500 -D BOARD_ESP12E
build_flags = -D MQTT_MAX_PACKET_SIZE=1500 -D BOARD_ESP12E -D DISPLAY_SIZE=1
#build_flags = -D MQTT_MAX_PACKET_SIZE=1500 -D DEBUG=X -DBOARD_ESP12E
platform = espressif8266
framework = arduino
lib_deps =
ArduinoJson@~5.13
ESP8266_SSD1306
https://github.com/markszabo/IRremoteESP8266.git
PubSubClient
WifiManager
upload_port = /dev/ttyUSB0
[env:nodemcu]
board = nodemcu
build_flags = -D MQTT_MAX_PACKET_SIZE=1500 -D BOARD_NODEMCU
#build_flags = -D MQTT_MAX_PACKET_SIZE=1500 -D DEBUG=X -DBOARD_NODEMCU
platform = espressif8266
framework = arduino
lib_deps =
ArduinoJson@~5.13
ESP8266_SSD1306
https://github.com/markszabo/IRremoteESP8266.git
PubSubClient
WifiManager
upload_port = /dev/ttyUSB0