事情大概是这样子:homeassistant中有sun实体可以实时显示太阳方位角sensor.sun_solar_azimuth。我想通过旋转图片的形式在平面户型图模拟阳光角度的变换,询问GPT后有以下代码:
- type: state-icon
entity: sensor.sun_solar_azimuth
style:
top: 50%
left: 50%
width: 100px
height: 100px
transform: rotate( {{ states.sensor.sun_solar_azimuth.state }}deg )
可惜图标并没有旋转,改为 transform: rotate(90deg ) 后图标可旋转,初步认为是实体数值没有传递给transform;
使用Markdown卡片:
The current value of the sun's solar azimuth is {{ states('sensor.sun_solar_azimuth') }}.
可以正确返回方位角117.45,故认为数值应该是没错的。
所以想请教各位大神该如何修改,
|