Hello everyone,

I am succesfully controlling a lot of switches and dimmers but facing some issues while trying to control and LED-Stripe. The log shows the following messages after receiving the command from the original remote control:

debug [pimatic-homeduino]: led4: { id: 36400, command: ‘bright+’ }
debug [pimatic-homeduino]: led3: { id: 36400, command: ‘code:10000011’ }
debug [pimatic-homeduino]: led2: { id: 36400, command: ‘code:10000011’ }
debug [pimatic-homeduino]: led1: { id: 36400, command: ‘code:10000011’ }
debug [pimatic-homeduino]: contact4: { id: 582408, contact: false }
debug [pimatic-homeduino]: contact3: { id: 466167, contact: false }
debug [pimatic-homeduino]: contact2: { id: 466167, contact: false }
debug [pimatic-homeduino]: pir2: { unit: 14, id: 7, presence: true }
debug [pimatic-homeduino]: switch30: { id: 38313, unit: 23125, command: undefined }
debug [pimatic-homeduino]: switch28: { id: 19616436, unit: 21909, command: ‘on’ }
debug [pimatic-homeduino]: switch22: { id: 466167, command: undefined }
debug [pimatic-homeduino]: switch19: { id: undefined, unit: undefined, state: false }
debug [pimatic-homeduino]: switch15: { id: 582408, unit: 2, state: false, all: false }
debug [pimatic-homeduino]: switch5: { id: 466167, unit: 0, all: true, state: false }
debug [pimatic-homeduino]: received: [ 468, 1436, 15420 ] 10010101101010010101101001010101100101010101101002
debug [pimatic-homeduino]: data: “RF receive 1436 468 15420 0 0 0 0 0 01101010010101101010010110101010011010101010010112”

As homeduino seems to determine an LED4 protocol compatible command, I added a button to my config for sending it:

{
  "id": "homeduino-buttons1",
  "name": "Buttons1",
  "class": "HomeduinoRFButtonsDevice",
  "buttons": [
    {
      "id": "test-button1",
      "text": "test1-brighter",
      "protocols": [
        {
          "name": "led4",
          "options": {
            "id": 36400,
            "command": "bright+"
          }
        }
      ]
    }
  ]
},

Using the button does cause the following log entry:

debug [pimatic-homeduino]: data: "ACK"
debug [pimatic-homeduino]: Sending Protocol: led4 id:36400 command:bright+ all:false Pin:4 Repeats:7

Unfortunately, the device to be controlled does not do the expected. I really would appreciate any ideas or suggestions on that!

Thanks in prior, sincerely
Tim