good day, i have been trying to compile openhasp firmware for the sensecap display myself for a long time but i am not succeeding. the link to the Seeed Studio SenseCap binary is no longer available or i am doing something wrong, is there any way to send me a valid link or a copy of this firmware ? thanks a lot
Good Morning and thank you for all your work ! this piece of software is amazing - one question, is there a way to make pages change every lets say 5 seconds after certain amount of inactivity ?
Hey everyone, new OpenHASP user here. I flashed the 7.0 rc9 and rc10 binaries onto a new SenseCAP D1 but after it boots (and it reports its IP address) all I see is an empty screen with the word “plate” on it.
The docs suggest I should be able to access MQTT settings for the HA integration, but I cannot for the life of me figure out how to do that.
Am I missing something obvious, or is my device not working as expected?
Not really, unless you want to fork, change and recompile the mqtt parsing in openHASP…
Maybe zigbee2mqtt can post to customized topics instead? If not, you need a way to translate the topics which is typically what a Home Automation system does.
I have been trying to figure out how to get an OpenHASP button matrix integrated into home assistant to control a fan. I have what I think should work, but I must be missing something. Using MQTT Explorer I can see “val” being sent as a number (0,1,2,3) just as I expect, but I can not get Home Assistant to run fan.set_percentage service . If anybody could point me to an example that uses a matrix to set fan percentage I would greatly appriciate it. Thanks!
- obj: "p2b2"
event:
"down":
- service: fan.set_percentage
entity_id: fan.barn_fan_center
data:
percentage: >
{% if val == 0 %}
'0'
{% elif val == 1 %}
'33'
{% elif val == 2 %}
'66'
{% elif val == 3 %}
'100'
{% endif %}