1
0
mirror of https://github.com/esphome/esphome.git synced 2025-03-15 07:08:20 +00:00

Update platformio versions

This commit is contained in:
Otto Winter 2018-11-30 19:56:53 +01:00
parent 100640474a
commit 29015d0c3a
No known key found for this signature in database
GPG Key ID: DB66C0BE6013F97E
2 changed files with 3 additions and 3 deletions

View File

@ -275,7 +275,7 @@ def lambda_condition_to_code(config, condition_id, arg_type, template_arg):
for lambda_ in process_lambda(config, [(arg_type, 'x')]): for lambda_ in process_lambda(config, [(arg_type, 'x')]):
yield yield
rhs = LambdaCondition.new(template_arg, lambda_) rhs = LambdaCondition.new(template_arg, lambda_)
type = LambdaAction.template(template_arg) type = LambdaCondition.template(template_arg)
yield Pvariable(condition_id, rhs, type=type) yield Pvariable(condition_id, rhs, type=type)

View File

@ -115,14 +115,14 @@ PLATFORMIO_ESP8266_LUT = {
'2.4.1': 'espressif8266@1.7.3', '2.4.1': 'espressif8266@1.7.3',
'2.4.0': 'espressif8266@1.6.0', '2.4.0': 'espressif8266@1.6.0',
'2.3.0': 'espressif8266@1.5.0', '2.3.0': 'espressif8266@1.5.0',
'RECOMMENDED': 'espressif8266@>=1.8.0', 'RECOMMENDED': 'espressif8266@1.8.0',
'LATEST': 'espressif8266', 'LATEST': 'espressif8266',
'DEV': ARDUINO_VERSION_ESP8266_DEV, 'DEV': ARDUINO_VERSION_ESP8266_DEV,
} }
PLATFORMIO_ESP32_LUT = { PLATFORMIO_ESP32_LUT = {
'1.0.0': 'espressif32@1.4.0', '1.0.0': 'espressif32@1.4.0',
'RECOMMENDED': 'espressif32@>=1.4.0', 'RECOMMENDED': 'espressif32@1.5.0',
'LATEST': 'espressif32', 'LATEST': 'espressif32',
'DEV': ARDUINO_VERSION_ESP32_DEV, 'DEV': ARDUINO_VERSION_ESP32_DEV,
} }