example-custom-config icon indicating copy to clipboard operation
example-custom-config copied to clipboard

A collection of example custom components for Home Assistant

Results 9 example-custom-config issues
Sort by recently updated
recently updated
newest added

I think the example configuration for example_light still uses an old identifier: https://github.com/home-assistant/example-custom-config/blame/master/custom_components/example_light/README.md#L18 should be: - platform: example_light I this is correct, I can create an PR but even with...

I get the following error when running the async mqtt example: `Exception in message_received when handling msg on 'home-assistant/mqtt_example': 'payload_text' TypeError: async_setup..message_received() missing 2 required positional arguments: 'payload' and 'qos'`...

@asyncio.coroutine was removed in Python 3.11, replaced with async def https://docs.python.org/3.10/library/asyncio-task.html#asyncio.coroutine The component does not have any config options, so using cv.empty_config_schema to ensure it passes validation.

cla-signed

The component does not have any config options, so using cv.empty_config_schema to ensure it passes validation.

cla-signed

The component does not have any config options, so using cv.empty_config_schema to ensure it passes validation.

cla-signed

The component does not have any config options, so using cv.empty_config_schema to ensure it passes validation.

cla-signed

remove hass.config_entries.async_setup_platforms

cla-signed

I'd be happy to update the readme if I can get some help understanding how to use this example. I copied the example to `config/custom_components`, started hass, went to Settings...

Steps to reproduce. - Clone repo - Move *example-custom-config/custom_components/mqtt_basic_async* to *custom_components* - Restart HA - Add below to configuration.yaml ``` mqtt_basic_async: topic: "home-assistant/mqtt_example" ``` - Go to Developer Tools and...