Wall panel, help with mqtt commands, locked my self out, mqtt command for settings menu, mqtt command for tts talking

HELP :slight_smile:

Hi there, I just killed my wall panel on my old nexus 7.

I wanted to activate the invisible config menue button, but clicked on the hide settings button… yea I know, plain dump.

now I am struggling to find the mqtt command to call the settings menu remotely.

anybody here who knows how thats working?

here are the docs: wallpanel-api/README.md at master · WallPanel-Project/wallpanel-api · GitHub

I cant even make wall panel run a “reload” of the HA lovelace website from remote.

any example would be highly apreciated.

I tried it this way:

I did even setup a new wall panel on an other nexus, with stock settings, to try to figuer out what to use in mqtt, but even with this it does not work.

when I listen to the battery sensor, I get the mqtt reports…
image

so what am I doing wrong here?

Thanks

If you just hid the button you can get to setting by touching the bottom right hand corner of the screen where the settings icon used to be.

its not just invisible, its deactivated! i activated the wrong button, the “deactivate” instead of “invisible”

Just been to my Wallpanel to check, it says the mqtt command is “settings”

1 Like

thanks man

image

this is how it needs to look from HA mqtt interface, and beware, at least on my nexus, it take some time to do what was ordered, kind of like the Rudolf Diesel minute’s silence before such a banger comes to life :slight_smile:

edit:
wallpanel/mywallpanel/ needs to be replaced with what you did set in Base Tpoic set under the mqtt settings in the wall panel if you did change them from stock settings.

attention, if you safe the last dash behind mywallpanel, you need to give the command as

wallpanel/mywallpanelcommand this does work too.

1 Like

No problem glad to help.

thanks to this little excursion, now our wall panel announces when the insect killer, known to us as “Humbrum Brutzler”, switches its state, and even announces when one of the washing machines or a dryer has finished its work. no more walking downstairs to check on the status.

alias: Wama / Trockner fertig
description: ''
trigger:
  - platform: numeric_state
    entity_id: sensor.steckdose_wama_l_energy_power
    for:
      minutes: 5
    below: '5'
    id: WaMaL
  - platform: numeric_state
    entity_id: sensor.steckdose_wama_m_energy_power
    below: '5'
    for:
      minutes: 5
    id: WaMaM
  - platform: numeric_state
    entity_id: sensor.steckdose_wama_r_energy_power
    below: '5'
    for:
      minutes: 5
    id: WaMaR
  - platform: numeric_state
    entity_id: sensor.steckdose_trockner_o_energy_power
    below: '5'
    for:
      minutes: 5
    id: TrocknerO
  - platform: numeric_state
    entity_id: sensor.steckdose_trockner_u_energy_power
    below: '5'
    for:
      minutes: 5
    id: TrocknerU
condition: []
action:
  - choose:
      - conditions:
          - condition: trigger
            id: WaMaL
        sequence:
          - service: mqtt.publish
            data:
              topic: wallpanel/BK_nexus9/command
              payload: '{"speak": "Die linke Waschmaschine ist jetzt fertig. Links!"}'
          - service: notify.mobile_app_iphonese_von_andrea_frank
            data:
              message: Die linke Waschmaschine ist fertig.
              title: WaMa fertig
      - conditions:
          - condition: trigger
            id: WaMaM
        sequence:
          - service: mqtt.publish
            data:
              topic: wallpanel/BK_nexus9/command
              payload: '{"speak": "Die mittlere Waschmaschine ist jetzt fertig. Mitte!"}'
          - service: notify.mobile_app_iphonese_von_andrea_frank
            data:
              message: Die mittlere Waschmaschine ist fertig.
              title: WaMa fertig
      - conditions:
          - condition: trigger
            id: WaMaR
        sequence:
          - service: mqtt.publish
            data:
              topic: wallpanel/BK_nexus9/command
              payload: '{"speak": "Die rechte Waschmaschine ist jetzt fertig. Rechts!"}'
          - service: notify.mobile_app_iphonese_von_andrea_frank
            data:
              message: Die rechte Waschmaschine ist fertig.
              title: WaMa fertig
      - conditions:
          - condition: trigger
            id: TrocknerO
        sequence:
          - service: mqtt.publish
            data:
              topic: wallpanel/BK_nexus9/command
              payload: '{"speak": "Der obere Trockner ist jetzt fertig. Oben!"}'
          - service: notify.mobile_app_iphonese_von_andrea_frank
            data:
              message: Der obere Trockner ist fertig.
              title: Trockner fertig
      - conditions:
          - condition: trigger
            id: TrocknerU
        sequence:
          - service: mqtt.publish
            data:
              topic: wallpanel/BK_nexus9/command
              payload: '{"speak": "Der untere Trockner ist jetzt fertig. Untern!"}'
          - service: notify.mobile_app_iphonese_von_andrea_frank
            data:
              message: Der untere Trockner ist fertig.
              title: Trockner fertig
    default:
      - service: mqtt.publish
        data:
          topic: wallpanel/BK_nexus9/command
          payload: '{"speak": "Aus der Waschküche nix neues!"}'
mode: single

Hello, I have a similar problem that would need your assistance.
I lost the ability to access the android setting of my device.
I would like to use an intent and a URL for that. Does anyone know the correct intent?

service: mqtt.publish
data:
  topic: wallpanel/mywallpanel/command
  payload: "{\"url\": \"android.intent\"}"
1 Like

I just wanna say thank you

Sorry guys to hijack the topic, but I have a question regarding wallpannel mqtt that I can’t figure out.
I installed the app in an android tablet and I’m trying to wake the screen using mqtt, but to no avail.
I’m publishing in the topic wallpanel/mywallpanel/command using this payload {“wake”: true}, but it’s not working.
Using mqtt explorer I can see it publishes in the right topic, but the screen never turns on.
Any clues?

I am also 100% stuck, and I hope I’m just making a silly mistake. The top is literally a snippet from a photo I took of my tablet’s Wall Panel settings, then, of course, Developer Tools >> Call Service. I’m receiving MQTT data from Wall Panel into HA, but can’t send anything out. Any suggestions? I hope?

image

Thanks in advance!

so first I would try to get it to work without a template, for thst take a copy from my sample in post 5 and get that run, second I might be wrong but I think you’re missing a slash behind your settings in the wall panel.

and keep in mind that WallPanel is not wallpanel… it must match exactly.