WallPanel for Android [Formerly HomeDash]

Is there anyone that has recently built a new APK and would be willing to share? Latest one on Github is from January. Unfortunately I don’t have the skills to build one myself.

It doesn’t look like the source code has been updated since then so a rebuild would get you the same apk from the releases.

It’s been a while since you posted this message. I’m trying to do the same thing and running into the same problem. Did you find a solution? I found out the function works when you initiate it as a MQTT message, which means you can have a script in HA fired when a button is pushed on the panel to do this. However, it doens’t work well if you want to do this on multiple panels logged in with the same HA user profile like I do. I don’t know how to tell HA which panel triggers the script so it would publish the MQTT message to the corresponding basic topic. Does anyone have an idea?

I’ve been frustrated for a while now by my Panel running Fully Kiosk taking ages to display Apex and Mini Graph cards! Looking for alternatives I came across WallPanel.
It’s taken me about an hour to get it installed and set up and I must say it was fairly straightforward - even the MQTT bit and getting the few sensors i needed.
And the graphs get displayed fully now in a second or so. Much better.
One thing I’m not seeing is a stream from the camera which I have enabled. How can I get it?

Anyone know what I am doing wrong here with my restful command:

  wallpanel_screen_on:
    resource: "http://192.168.1.98:2971/api/"
    method: POST
    payload: "{"wake": true, "wakeTime": 180}"

Check it with curl

how do I do that? I am new to REST

https://www.baeldung.com/curl-rest

https://www.linode.com/docs/guides/curl-for-rest-api/

Google finds many more, including YouTube videos if that is your thing.

HA has curl installed.

Although looking at it, I think your url should be

resource: "http://192.168.1.98:2971/api/command"

Help.
I’m trying to use the audio command and not hearing anything.
I have an audio file on a network drive with the path

192.168.x.y/Public/Media/hourlychimebeg.mp3

When I type this in Chrome it plays the clip.
When I use HA Developer Tool/Actions to send the URL as part of an audio command to Wallpanel, I get nothing. No indication of an error in HA nor the panel itself.
The Topic is

wallpanel/mywallpanel/command

and the Payload

{"audio":"file://192.168.x.y/Public/Media/hourlychimebeg.mp3"}

I’ve tried it withoiut the file:// prefix and with http://. They don’t work either.
The volume is set to 80%.
If I send the payload

{"speak":"hello"}

that works fine.

What am I missing?

Edit:

I randomly looked for an audio clip on the net and came across this url of a sci fi space laser firing…

https://codeskulptor-demos.commondatastorage.googleapis.com/GalaxyInvaders/alien_shoot.wav

When I use this in the payload, it works! Still don’t see what I’m missing though.