I looked at the source and not an expert in Python yet but confused by your comments in the code below:
‘’’’
def _turn_away_mode_on(self) -> None:
"""Turn away on.
**Somecomfort does have a proprietary away mode, but it doesn't really**
** work the way it should. For example: If you set a temperature manually**
** it doesn’t get overwritten when away mode is switched on.**
“”"
self._away = True
try:
# Get current mode
mode = self._device.system_mode
except somecomfort.SomeComfortError:
_LOGGER.error(“Can not get system mode”)
return
try:
# Set permanent hold
setattr(self._device, f"hold_{mode}", True)
# Set temperature
setattr(
self._device,
f"setpoint_{mode}",
getattr(self, f"_{mode}_away_temp"),
)
except somecomfort.SomeComfortError:
_LOGGER.error(
"Temperature %.1f out of range", getattr(self, f"_{mode}_away_temp")
)
‘’’
I believe I ran into that on my integration so I setup the away through my phone app and just use the toggle to go from an Away preset back to running the schedule.
well was hoping someone here using the Aeotec Siren 6 could help. Kind people on Discord explained the base service to use, but I feel my device is unreachable. It keeps hissing and emitting the light Led. It has been removed, but still hissing and lit. No way I can reset it (pressing the button over 20 secs)
Guess I need to wait for the backup battery inside to deplete…
There’s an open issue for the TPLink add-on - HASS becomes unusable if you have too many entities enabled (I can’t enable more than 10-15 or so before HASS slows to a crawl). If you disable polling in the Kasa System Options HASS will work, but it won’t reflect state change when someone manually turns on/off a Kasa device, and power values are only updated when you turn a device on/off via HASS.
Hi team, I am moving from 2021.5.5 to 2021.8.5 and have issues with yeelight ceiling1. Alexa no longer can dim the lights. Work fine in HASSIO. I notice on developer tools state all the yeelights have change to supported_features: 44 (instead of 47 as in 2021.5.5). I search through the release notes for any breaking changes to yeelight cant seem to find it. Would someone point me to the right direction.
Hi there!
I’m new to the community and HA, but today I had exactly the same: AttributeError: module 'hass_nabucasa.remote' has no attribute 'is_cloud_request' after upgrading to 2021.8.5 from 118.5.
I managed to fix it or at least workaround by changing the line 77 in /srv/ha/lib/python3.8/site-packages/homeassistant/components/http/forwarded.py to the following:
if remote is not None and remote.is_cloud_request is not None and remote.is_cloud_request.get():
(I understand, that it’s a bad practice to edit site-pachages manually)
Hope it will help!
I’ve been pulling my hair out trying to get my Fronius data to make sense - can anyone shed some light?
I seem to only be able to get 2 energy readings from the Fronius integration - one is PV generation, and the other is home consumption (ie regardless of whether it is from the grid or self-generation).
Obviously, it’s possible to calculate energy to/from grid if you know those two things, but that doesn’t seem to be happening with my setup.
Do some of you have separate CT clamps measuring each instead of total consumption?
I’ve tried messing about with scope / device numbers but it doesn’t seem to change anything.
My Fronius meter is at the feed-in point (i.e. in the switchboard directly after my utility meter). Is yours? And in the Inverter is it configured as such? There should be a value for all those sensors, to me it seems like yours is configured as a consumption meter?
Had the same problem upgrading to 2021.8.6. Your solution helped. Thanks a lot!.
Probably it is good to mention that cached .pyc file needs to be erased.