[Tutorial][Pro] Basic MQTT setup & connect Itho Daalderop NRG.watch interface

Broadcast what gets send with this code:

{
  "fan_mode": {
    "capability": "fan_mode",
    "stateTopic": "itho/ithostatus",
    "setTopic": "itho/cmd",
    "valueTemplate": "",
    "outputTemplate": "",
    "displayName": "Fan presets",
    "values": [
      { "id": "auto", "title": "auto"},
      { "id": "autonight", "title": "auto"},
      { "id": "low", "title": "low" },
      { "id": "medium", "title": "medium" },
      { "id": "high", "title": "high" },
      { "id": "timer1", "title": "timer1" },
      { "id": "timer2", "title": "timer2" },
      { "id": "timer3", "title": "timer3" }
    ]
  },

is giving the next values in MQTT.

{
  "source": "MQTT API-vremote-0",
  "command": "auto",
  "timestamp": 1759242453
}

The virtual remote is not working (C1101 module) with the itho hru 300.
But the RF devices are.

So the question is :slight_smile: : Is there another source like : “source”: “MQTT API-rfremote-0”,

And if so, how do i get this in my json instruction.

Thanks!