I get the same error and unfortunately no solution.
Edit manually the /config/custom_components/weback/manifest.json as christian_051 says and force restart the system (In my case it was unplugging Rasp Pi4 from the grid )
@jcmartinezsoto hello, I have the same vacuum as you, but when I add _CLEAN_ROBOT_VSLAN_YW to the supported device list to init.py I get the below error still
2021-09-14 17:28:25 INFO (MainThread) [custom_components.hacs] HACS is enabled
2021-09-14 17:28:32 DEBUG (SyncWorker_2) [custom_components.weback] Weback devices: [{āThing_Nameā: āxs-x6-24-a1-60-3a-aa-31ā, āThing_Nick_Nameā: āVacuumā, āImage_Urlā: āhttps://app.grit-tech.cn/deviceImage/xs/x6/xs-x6.pngā, āSub_typeā: āxs-x6ā}]
2021-09-14 17:28:32 INFO (SyncWorker_2) [custom_components.weback] Discovered Weback device xs-x6-24-a1-60-3a-aa-31 with nickname Vacuum
2021-09-14 17:28:33 INFO (SyncWorker_2) [custom_components.weback] Device not supported by this integration
I cannot run the " pip3 install weback-unofficial
" as I am running Home Assistant OS
is there a way I can just make the init file ignore the supported device check?
update for my issue-
I have changed this part in /config/custom_components/weback/init.py
# Fetching device description to check if this device is supported by platform
description = weback_api.get_device_description(device["Thing_Name"])
if description.get("thingTypeName") not in SUPPORTED_DEVICES:
_LOGGER.info("Device not supported by this integration")
continue
to
# Fetching device description to check if this device is supported by platform
description = weback_api.get_device_description(device["Thing_Name"])
if description.get("thingTypeName") in SUPPORTED_DEVICES:
_LOGGER.info("Device not supported by this integration")
continue
#changing not in to just in and everything works great
thank you so much opravdin for the awesome integration
i have got one of these vacuums, but im not sure where to put the login details. If i put them in config it results in an error?
Hi there! iām trying to configure this integration but i cannot reboot after installation and configuration due to this error:
021-10-13 20:31:13 ERROR (MainThread) [homeassistant.components.hassio] The system cannot restart because the configuration is not valid: Component error: weback - Integration āwebackā not found.
2021-10-13 20:31:13 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection] [139941891052112] The system cannot restart because the configuration is not valid: Component error: weback - Integration āwebackā not found.
Does anybody know, how to fix it?
Thanks!
Hello, I am new to home assistant and I installed weback cloud integration with Hacs, I restarted home assistant. After that, I donāt know where to go to log into my weback account. Can you help me please? Thank you
Integration could not be loaded due to missing version number in the manifest.json file. After adding the integration starts.
More info:
Thanks for the integration. It works with ty-x500
Has anyone managed to integrate the map?
@opravdin : you posted something in march this year. How did you get the map?
Thanks!
Hi,
integration was running great, but had to reinstall.
After setting up again and restarting multiple times my robot doesn`t show up in ha device or enteties list! WHY??? Using a X500, no error logs. Any Ideas what to do? Please help
same error here
any idea? or What can we do?
In case anyone sees the error;
* Entity vacuum.zeglint_d5_2c_f4_32_56_36_fe (<class 'custom_components.weback.vacuum.WebackVacuum'>) implements device_state_attributes. Please report it to the custom component author.
It is due to the changes in 2021.12.x, I have added the issue in github.
hi, set up my x600 some minutes ago.
fan speed issue is still here. is there a way to fix it?
is it also possible to see the map?
same thing here!
I canāt even add the integrationā¦ if I add the config to config.yaml, I get an error that the integration isnāt addedā¦ but I canāt add it in the integrations pageā¦ even though it IS added in the HACS component.
Using HA 2021.12.3
Integration error: weback - Integration āwebackā not found.
@opravdin hi, i noticed that the card in HA is not showing datas in real time.
then i open the app on the phone and magically all datas update in real time and also the fan speed change from the HA card is working.
so i think that is missing something in the integration which keeps the link between the robot and the server active. is it possible to fix it?
is also possible to see the map?
you have to to
pip install weback-unofficial
from ssh
then the integration will work
Hi chicco83 I have the same error, it seems that the integration does not update until the application is opened. I donāt remember if it happened after an HA update or if it always worked like that.
It would be very good to see the map and be able to clean by area.
The application is working with Unnic robot.
There are 2 integrations, one unofficial, the other one shows up in hacsā¦ Iām using this oneā¦ it seems to be installedā¦ but I canāt find the devicesā¦
You mean the weback app?
āābut I canāt find the devicesā¦āā
I had the same error until I copied what justhuman33 did:
edit the: /config/custom_components/weback/init.py
# Fetching device description to check if this device is supported by platform
description = weback_api.get_device_description (device ["Thing_Name"])
if description.get ("thingTypeName") in SUPPORTED_DEVICES:
_LOGGER.info ("Device not supported by this integration")
continue