Hello!
Trying to write my first custom component and I am stuck. According to https://github.com/home-assistant/home-assistant/pull/24946 it should be possible. But when I try to implement it, i see a empty line in the list of supported integrations in the UI.
The empty line on top is my custom component.
manifest.json
{
"domain": "samsung_wam",
"name": "Samsung Multiroom Speaker",
"config_flow": true,
"documentation": "",
"requirements": [],
"dependencies": [],
"ssdp": [
{
"device_type": "urn:samsung.com:device:RemoteControlReceiver:1"
}
],
"codeowners": []
}
strings.json
{
"config": {
"title": "Samsung Multiroom Speaker"
}
}
And a second question:
Does anyone know if discovery is available in custom components accordning to the above manifest.json
?
I cant seem to get it working, but I have so far only write some trail code that should print to log for investigating all the functions.