mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 06:33:51 +00:00 
			
		
		
		
	[Huge] Util Refactor, Dashboard Improvements, Hass.io Auth API, Better Validation Errors, Conditions, Custom Platforms, Substitutions (#234)
* Implement custom sensor platform
* Update
* Ethernet
* Lint
* Fix
* Login page
* Rename cookie secret
* Update manifest
* Update cookie check logic
* Favicon
* Fix
* Favicon manifest
* Fix
* Fix
* Fix
* Use hostname
* Message
* Temporary commit for screenshot
* Automatic board selection
* Undo temporary commit
* Update esphomeyaml-edge
* In-dashboard editing and hosting files locally
* Update esphomeyaml-edge
* Better ANSI color escaping
* Message
* Lint
* Download Efficiency
* Fix gitlab
* Fix
* Rename extra_libraries to libraries
* Add example
* Update README.md
* Update README.md
* Update README.md
* HassIO -> Hass.io
* Updates
* Add update available notice
* Update
* Fix substitutions
* Better error message
* Re-do dashboard ANSI colors
* Only include FastLED if user says so
* Autoscroll logs
* Remove old checks
* Use safer RedirectText
* Improvements
* Fix
* Use enviornment variable
* Use http://hassio/host/info
* Fix conditions
* Update platformio versions
* Revert "Use enviornment variable"
This reverts commit 7f038eb5d2.
* Fix
* README update
* Temp
* Better invalid config messages
* Platformio debug
* Improve error messages
* Debug
* Remove debug
* Multi Conf
* Update
* Better paths
* Remove unused
* Fixes
* Lint
* lib_ignore
* Try fix platformio colors
* Fix dashboard scrolling
* Revert
* Lint
* Revert
			
			
This commit is contained in:
		| @@ -4,8 +4,9 @@ from esphomeyaml.automation import maybe_simple_id, ACTION_REGISTRY | ||||
| import esphomeyaml.config_validation as cv | ||||
| from esphomeyaml.components.power_supply import PowerSupplyComponent | ||||
| from esphomeyaml.const import CONF_INVERTED, CONF_MAX_POWER, CONF_POWER_SUPPLY, CONF_ID, CONF_LEVEL | ||||
| from esphomeyaml.helpers import add, esphomelib_ns, get_variable, TemplateArguments, Pvariable, \ | ||||
|     templatable, float_, add_job, Action | ||||
| from esphomeyaml.core import CORE | ||||
| from esphomeyaml.cpp_generator import add, get_variable, Pvariable, templatable | ||||
| from esphomeyaml.cpp_types import esphomelib_ns, Action, float_ | ||||
|  | ||||
| PLATFORM_SCHEMA = cv.PLATFORM_SCHEMA.extend({ | ||||
|  | ||||
| @@ -26,7 +27,9 @@ FLOAT_OUTPUT_PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(FLOAT_OUTPUT_SCHEMA.schema | ||||
|  | ||||
| output_ns = esphomelib_ns.namespace('output') | ||||
| BinaryOutput = output_ns.class_('BinaryOutput') | ||||
| BinaryOutputPtr = BinaryOutput.operator('ptr') | ||||
| FloatOutput = output_ns.class_('FloatOutput', BinaryOutput) | ||||
| FloatOutputPtr = FloatOutput.operator('ptr') | ||||
|  | ||||
| # Actions | ||||
| TurnOffAction = output_ns.class_('TurnOffAction', Action) | ||||
| @@ -47,7 +50,12 @@ def setup_output_platform_(obj, config, skip_power_supply=False): | ||||
|  | ||||
|  | ||||
| def setup_output_platform(obj, config, skip_power_supply=False): | ||||
|     add_job(setup_output_platform_, obj, config, skip_power_supply) | ||||
|     CORE.add_job(setup_output_platform_, obj, config, skip_power_supply) | ||||
|  | ||||
|  | ||||
| def register_output(var, config): | ||||
|     output_var = Pvariable(config[CONF_ID], var, has_side_effects=True) | ||||
|     CORE.add_job(setup_output_platform_, output_var, config) | ||||
|  | ||||
|  | ||||
| BUILD_FLAGS = '-DUSE_OUTPUT' | ||||
| @@ -60,8 +68,7 @@ OUTPUT_TURN_ON_ACTION = maybe_simple_id({ | ||||
|  | ||||
|  | ||||
| @ACTION_REGISTRY.register(CONF_OUTPUT_TURN_ON, OUTPUT_TURN_ON_ACTION) | ||||
| def output_turn_on_to_code(config, action_id, arg_type): | ||||
|     template_arg = TemplateArguments(arg_type) | ||||
| def output_turn_on_to_code(config, action_id, arg_type, template_arg): | ||||
|     for var in get_variable(config[CONF_ID]): | ||||
|         yield None | ||||
|     rhs = var.make_turn_on_action(template_arg) | ||||
| @@ -76,8 +83,7 @@ OUTPUT_TURN_OFF_ACTION = maybe_simple_id({ | ||||
|  | ||||
|  | ||||
| @ACTION_REGISTRY.register(CONF_OUTPUT_TURN_OFF, OUTPUT_TURN_OFF_ACTION) | ||||
| def output_turn_off_to_code(config, action_id, arg_type): | ||||
|     template_arg = TemplateArguments(arg_type) | ||||
| def output_turn_off_to_code(config, action_id, arg_type, template_arg): | ||||
|     for var in get_variable(config[CONF_ID]): | ||||
|         yield None | ||||
|     rhs = var.make_turn_off_action(template_arg) | ||||
| @@ -93,8 +99,7 @@ OUTPUT_SET_LEVEL_ACTION = vol.Schema({ | ||||
|  | ||||
|  | ||||
| @ACTION_REGISTRY.register(CONF_OUTPUT_SET_LEVEL, OUTPUT_SET_LEVEL_ACTION) | ||||
| def output_set_level_to_code(config, action_id, arg_type): | ||||
|     template_arg = TemplateArguments(arg_type) | ||||
| def output_set_level_to_code(config, action_id, arg_type, template_arg): | ||||
|     for var in get_variable(config[CONF_ID]): | ||||
|         yield None | ||||
|     rhs = var.make_set_level_action(template_arg) | ||||
|   | ||||
							
								
								
									
										66
									
								
								esphomeyaml/components/output/custom.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										66
									
								
								esphomeyaml/components/output/custom.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,66 @@ | ||||
| import voluptuous as vol | ||||
|  | ||||
| from esphomeyaml.components import output | ||||
| import esphomeyaml.config_validation as cv | ||||
| from esphomeyaml.const import CONF_ID, CONF_LAMBDA, CONF_OUTPUTS, CONF_TYPE | ||||
| from esphomeyaml.cpp_generator import process_lambda, variable | ||||
| from esphomeyaml.cpp_types import std_vector | ||||
|  | ||||
| CustomBinaryOutputConstructor = output.output_ns.class_('CustomBinaryOutputConstructor') | ||||
| CustomFloatOutputConstructor = output.output_ns.class_('CustomFloatOutputConstructor') | ||||
|  | ||||
| BINARY_SCHEMA = output.PLATFORM_SCHEMA.extend({ | ||||
|     cv.GenerateID(): cv.declare_variable_id(CustomBinaryOutputConstructor), | ||||
|     vol.Required(CONF_LAMBDA): cv.lambda_, | ||||
|     vol.Required(CONF_OUTPUTS): | ||||
|         vol.All(cv.ensure_list, [output.BINARY_OUTPUT_SCHEMA.extend({ | ||||
|             cv.GenerateID(): cv.declare_variable_id(output.BinaryOutput), | ||||
|         })]), | ||||
| }) | ||||
|  | ||||
| FLOAT_SCHEMA = output.PLATFORM_SCHEMA.extend({ | ||||
|     cv.GenerateID(): cv.declare_variable_id(CustomFloatOutputConstructor), | ||||
|     vol.Required(CONF_LAMBDA): cv.lambda_, | ||||
|     vol.Required(CONF_OUTPUTS): | ||||
|         vol.All(cv.ensure_list, [output.FLOAT_OUTPUT_PLATFORM_SCHEMA.extend({ | ||||
|             cv.GenerateID(): cv.declare_variable_id(output.FloatOutput), | ||||
|         })]), | ||||
| }) | ||||
|  | ||||
|  | ||||
| def validate_custom_output(value): | ||||
|     if not isinstance(value, dict): | ||||
|         raise vol.Invalid("Value must be dict") | ||||
|     if CONF_TYPE not in value: | ||||
|         raise vol.Invalid("type not specified!") | ||||
|     type = cv.string_strict(value[CONF_TYPE]).lower() | ||||
|     value[CONF_TYPE] = type | ||||
|     if type == 'binary': | ||||
|         return BINARY_SCHEMA(value) | ||||
|     elif type == 'float': | ||||
|         return FLOAT_SCHEMA(value) | ||||
|     raise vol.Invalid("type must either be binary or float, not {}!".format(type)) | ||||
|  | ||||
|  | ||||
| PLATFORM_SCHEMA = validate_custom_output | ||||
|  | ||||
|  | ||||
| def to_code(config): | ||||
|     type = config[CONF_TYPE] | ||||
|     if type == 'binary': | ||||
|         ret_type = output.BinaryOutputPtr | ||||
|         klass = CustomBinaryOutputConstructor | ||||
|     else: | ||||
|         ret_type = output.FloatOutputPtr | ||||
|         klass = CustomFloatOutputConstructor | ||||
|     for template_ in process_lambda(config[CONF_LAMBDA], [], | ||||
|                                     return_type=std_vector.template(ret_type)): | ||||
|         yield | ||||
|  | ||||
|     rhs = klass(template_) | ||||
|     custom = variable(config[CONF_ID], rhs) | ||||
|     for i, sens in enumerate(config[CONF_OUTPUTS]): | ||||
|         output.register_output(custom.get_output(i), sens) | ||||
|  | ||||
|  | ||||
| BUILD_FLAGS = '-DUSE_CUSTOM_OUTPUT' | ||||
| @@ -3,9 +3,10 @@ import voluptuous as vol | ||||
| from esphomeyaml import pins | ||||
| from esphomeyaml.components import output | ||||
| import esphomeyaml.config_validation as cv | ||||
| from esphomeyaml.const import CONF_ID, CONF_NUMBER, CONF_PIN, ESP_PLATFORM_ESP8266, CONF_FREQUENCY | ||||
| from esphomeyaml.helpers import App, Component, Pvariable, gpio_output_pin_expression, \ | ||||
|     setup_component, add | ||||
| from esphomeyaml.const import CONF_FREQUENCY, CONF_ID, CONF_NUMBER, CONF_PIN, ESP_PLATFORM_ESP8266 | ||||
| from esphomeyaml.cpp_generator import Pvariable, add | ||||
| from esphomeyaml.cpp_helpers import gpio_output_pin_expression, setup_component | ||||
| from esphomeyaml.cpp_types import App, Component | ||||
|  | ||||
| ESP_PLATFORMS = [ESP_PLATFORM_ESP8266] | ||||
|  | ||||
|   | ||||
| @@ -1,11 +1,12 @@ | ||||
| import voluptuous as vol | ||||
|  | ||||
| from esphomeyaml import pins | ||||
| import esphomeyaml.config_validation as cv | ||||
| from esphomeyaml.components import output | ||||
| import esphomeyaml.config_validation as cv | ||||
| from esphomeyaml.const import CONF_ID, CONF_PIN | ||||
| from esphomeyaml.helpers import App, Pvariable, gpio_output_pin_expression, setup_component, \ | ||||
|     Component | ||||
| from esphomeyaml.cpp_generator import Pvariable | ||||
| from esphomeyaml.cpp_helpers import gpio_output_pin_expression, setup_component | ||||
| from esphomeyaml.cpp_types import App, Component | ||||
|  | ||||
| GPIOBinaryOutputComponent = output.output_ns.class_('GPIOBinaryOutputComponent', | ||||
|                                                     output.BinaryOutput, Component) | ||||
|   | ||||
| @@ -1,11 +1,13 @@ | ||||
| import voluptuous as vol | ||||
|  | ||||
| import esphomeyaml.config_validation as cv | ||||
| from esphomeyaml import pins | ||||
| from esphomeyaml.components import output | ||||
| import esphomeyaml.config_validation as cv | ||||
| from esphomeyaml.const import APB_CLOCK_FREQ, CONF_BIT_DEPTH, CONF_CHANNEL, CONF_FREQUENCY, \ | ||||
|     CONF_ID, CONF_PIN, ESP_PLATFORM_ESP32 | ||||
| from esphomeyaml.helpers import App, Pvariable, add, setup_component, Component | ||||
| from esphomeyaml.cpp_generator import Pvariable, add | ||||
| from esphomeyaml.cpp_helpers import setup_component | ||||
| from esphomeyaml.cpp_types import App, Component | ||||
|  | ||||
| ESP_PLATFORMS = [ESP_PLATFORM_ESP32] | ||||
|  | ||||
|   | ||||
| @@ -1,10 +1,11 @@ | ||||
| import voluptuous as vol | ||||
|  | ||||
| import esphomeyaml.config_validation as cv | ||||
| from esphomeyaml.components import output | ||||
| from esphomeyaml.components.my9231 import MY9231OutputComponent | ||||
| import esphomeyaml.config_validation as cv | ||||
| from esphomeyaml.const import CONF_CHANNEL, CONF_ID, CONF_MY9231_ID, CONF_POWER_SUPPLY | ||||
| from esphomeyaml.helpers import Pvariable, get_variable, setup_component | ||||
| from esphomeyaml.cpp_generator import Pvariable, get_variable | ||||
| from esphomeyaml.cpp_helpers import setup_component | ||||
|  | ||||
| DEPENDENCIES = ['my9231'] | ||||
|  | ||||
|   | ||||
| @@ -1,10 +1,10 @@ | ||||
| import voluptuous as vol | ||||
|  | ||||
| import esphomeyaml.config_validation as cv | ||||
| from esphomeyaml.components import output | ||||
| from esphomeyaml.components.pca9685 import PCA9685OutputComponent | ||||
| import esphomeyaml.config_validation as cv | ||||
| from esphomeyaml.const import CONF_CHANNEL, CONF_ID, CONF_PCA9685_ID, CONF_POWER_SUPPLY | ||||
| from esphomeyaml.helpers import Pvariable, get_variable | ||||
| from esphomeyaml.cpp_generator import Pvariable, get_variable | ||||
|  | ||||
| DEPENDENCIES = ['pca9685'] | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user