WallPanel for Android [Formerly HomeDash]

Not helpful.

See the date of post please, but it is working now.

No, “latest” or “last” is not a version. Please get with the programme :slight_smile:

You are right but I’m sure the author can find out the version from the date. Next time I write the version too but I hope that will be not needed. :slightly_smiling_face:
Only the custom bar card doesn’t work , version is 0.8.6 Build 6 .

Does someone use the bar card with Wallpanel app?
Only with this the bars are empty.

I have a feature request.
Is it possible to create a long living token for wallpanel and use it for logon?
As I use wallpanel for displays, where the sidebar and the header is hidden, anytime wallpanel has to be restarted, a new logon is required and the old refresh token keeps active as it not will be deleted.
A long living token will simplify this procedure rapidly.

That shouldn’t happen. You need to touch the “keep this login” or whatever it says when you log in the first time.

Or you could use trusted network in the HA setup.

Is your eval statement to open up a card still working for you? I just tried it and I can’t for the life of me get it to work. I keep getting an error that says the fire function is undefined.

I alwas use trusted network.
But for each logon, a new token will be created.
Simply closing the app will not delete it.

hi there,
what photoframe app do you use?
thanks

my panel tablet running this cool app now. On the frontend all seems to work as expected. I now have tried to get the mqtt sensor part done. But I am failing. I have configured to use mqtt in the app like this:

mqtt broker address: 192.168.1.14
broker port number: 1883
base topic: wallpanel/wohnbereich/
client ID: wohnbereich
username: admin
password: ******

on home assistant I use the Mosquitto MQTT Server as a hassio addon with the following config:

{
  "ssl": false,
  "certfile": "fullchain.pem",
  "keyfile": "privkey.pem",
  "broker": true,
  "allow_anonymous": false,
  "mqttusers": [
    {
      "username": "admin",
      "password": "*****",
      "readonly": false,
      "topics": [
        "#"
      ]
    }
  ],
  "log_level": "info"
}

and the network config is like this
network_config_mqtt

my ha config looks like this:

mqtt:
  broker: a0d7b954-mqtt
  username: !secret mqtt_username
  password: !secret mqtt_password
  client_id: home-assistant
  discovery: true
  discovery_prefix: homeassistant

and

sensor:
  - platform: mqtt
    state_topic: "wallpanel/wohnbereich/sensor/battery"
    name: "Panel Battery Level"
    unit_of_measurement: "%"
    value_template: ''

but I get no data from the panel
the mqtt server log says:

1576744912: New connection from 192.168.1.145 on port 1883.
1576744912: New client connected from 192.168.1.145 as wohnbereich (p2, c0, k60, u'admin').
[...]
1576746254: Client wohnbereich disconnected.

Now I have no idea why on HA side nothing is coming in.
Any Idea is welcome
Regards

Is this component dead? No one answering my question :frowning:

i dont think that wallpanel is dead, but this topic :wink:
when i see your mqtt log, then the wallpanel is connected to the mqtt server.

is there any info from the client wohnbereich in between the connection and the disconnection?

you need to see if the wallpanel is not sending any info, or that HA isnt recieving any.

mosquitto_sub

How can I get these infos, how can I check, if the wallpanel fails to send? Is there any debug which I could check?

i enabled debug mode for the mqtt server. And receive these logs:

1577271593: Received SUBSCRIBE from home-assistant
1577271593: 	wallpanel/wohnbereich/sensor/battery (QoS 0)
1577271593: home-assistant 0 wallpanel/wohnbereich/sensor/battery
1577271609: Received PUBLISH from wohnbereich (d0, q1, r0, m1838, 'wallpanel/wohnbereich/sensor/battery', ... (75 bytes))
1577271609: Sending PUBACK to wohnbereich (m1838, rc0)
1577271609: Sending PUBLISH to home-assistant (d0, q0, r0, m0, 'wallpanel/wohnbereich/sensor/battery', ... (75 bytes))

Any idea what the problem could be?

home assistant listens to the same topic as wallpanel sends the data to.
and your log shows that your wallpanel really does send data.
and mqtt does send the data to HA

so i would start with looking at debug for the mqtt sensor in HA.

If you use mosquitto_sub you can see exactly what is sent to the topic.

Have you looked in the developer-tools states page?

I am using the hassio addon (https://github.com/hassio-addons/addon-mqtt/blob/3c6d596d1888c76d805e981abef9ec7143b051d7/README.md) the settings are posted above (now with debug enabled)
What is mosquitto_sub? In the dev states page I see the defined sensor which I created via configuration.yaml (see above). But it has no state/value.
BTW: The face and motion detection are working well!

I got my mistake. The help page : https://thanksmister.com/wallpanel-android/
describes to use:

sensor:
  - platform: mqtt
    state_topic: "wallpanel/mywallpanel/sensor/battery"
    name: "WallPanel Battery Level"
    unit_of_measurement: "%"
    value_template: ''

but the correct setting is:

sensor:
  - platform: mqtt
    state_topic: "wallpanel/mywallpanel/sensor/battery"
    name: "WallPanel Battery Level"
    unit_of_measurement: "%"
    value_template: '{{ value_json.value }}'

Thx for help anyway.