[SOLVED] Millheat Wifi Electric heater openhab binding

Yes - in the console, only this (related to Millheat) comes:

357 │ Active │  80 │ 3.3.0.202203120350    │ openHAB Add-ons :: Bundles :: Millheat Binding

I´m trying to set vacation mode, but I get an error code 6012 “invalid result”.

Any pointers to what could possibly be wrong?

I´m using a script to set the relevant commands (start, end etc) for activating holiday mode.

var Vacation_Mode_Start = zdt.now().toLocalDateTime();
var Vacation_Mode_End = zdt.now().toLocalDateTime().plusDays(14);
  //Update MillHeat vacation mode
  events.sendCommand('Millheat_Vacation_Mode_Start',Vacation_Mode_Start);
  events.sendCommand('Millheat_Vacation_Mode_End',Vacation_Mode_End);
  events.sendCommand('Millheat_Vacation_Mode','ON');
  events.sendCommand('Millheat_Vacation_Mode_Advanced','ON');
  events.sendCommand('Millheat_Vacation_Target_Temperature','16');

From the debug log

1fc5eac128-11691 > POST https://eurouter.ablecloud.cn:9005/millService/v1/holidayChooseHome
1fc5eac128-11691 > Accept-Encoding: gzip
1fc5eac128-11691 > User-Agent: Jetty/9.4.50.v20221201
1fc5eac128-11691 > Connection: Keep-Alive
1fc5eac128-11691 > X-Zc-Major-Domain: seanywell
1fc5eac128-11691 > X-Zc-Msg-Name: millService
1fc5eac128-11691 > X-Zc-Sub-Domain: milltype
1fc5eac128-11691 > X-Zc-Seq-Id: 1
1fc5eac128-11691 > X-Zc-Version: 1
1fc5eac128-11691 > Content-Type: application/x-zc-object
1fc5eac128-11691 > X-Zc-Timestamp: 1693413143
1fc5eac128-11691 > X-Zc-Timeout: 300
1fc5eac128-11691 > X-Zc-Nonce: xxxxxxxxxxxxx
1fc5eac128-11691 > X-Zc-User-Id: 69281
1fc5eac128-11691 > X-Zc-User-Signature: xxxxxxxxx
1fc5eac128-11691 > X-Zc-Content-Length: 133
1fc5eac128-11691 > Host: eurouter.ablecloud.cn:9005
1fc5eac128-11691 > Content-Length: 133
{
“homeList”: [
{
“homeId”: xxxxxxxxx
}
],
“timeZoneNum”: “+02:00”,
“key”: “isHoliday”,
“value”: 1
}
2023-08-30 18:32:23.820 [DEBUG] [llheat.internal.client.RequestLogger] - Response 1fc5eac128-11691
1fc5eac128-11691 < HTTP/1.1 200 OK
1fc5eac128-11691 < Content-Length: 43
1fc5eac128-11691 < Content-Type: application/x-zc-object
1fc5eac128-11691 < Server: Jetty(9.1.5.v20140505)
1fc5eac128-11691 < X-Zc-Msg-Name: X-Zc-Err
1fc5eac128-11691 < X-Zc-Trace-Id: xxxxxxxxxx
1fc5eac128-11691 < Date: Wed, 30 Aug 2023 16:32:23 GMT
{
“errorCode”: 6012,
“error”: “invalid result”
}