Daikin itouch controller
daveruvolo
Posts: 8
Hello,
Has anyone written a module or include for a Daikin iTouch Controller? I am able to read statuses but i'm having trouble making changes to the set points. I suspect i'm doing something incorrect with the Endian conversion.
This protocol is way overly complex for what it does. I'm really hoping someone else has had some luck on this.
Has anyone written a module or include for a Daikin iTouch Controller? I am able to read statuses but i'm having trouble making changes to the set points. I suspect i'm doing something incorrect with the Endian conversion.
This protocol is way overly complex for what it does. I'm really hoping someone else has had some luck on this.
0
Comments
Simon
cSendData = "'POST /cmd HTTP/1.1',$0d,$0a,
'Content-Length: 56',$0d,$0a,
'Content-Type: application/octet-stream',$0d,$0a,$0d,$0a,
$38,$00,$00,$00, //command size is 56
$76,$11,$01,$00, //command id is 70006
$01,$00,$00,$00, //number of AC to set status- zone 1
$00,$00,$00,$00, //reserved 1
$00,$00,$00,$00, //reserved 2
$00,$00,$00,$00, //reserved 3
$00,$00,$00,$00, //reserved 4
$00,$00,$00,$00, //reserved 5
$00,$00,$00,$00, //ac address (0 is try on 1, 1 is try on 2, 2 is try on 3)
$03,$00,$00,$00, //setting bit enabled
$01,$00, //on/off is set to on
$04,$00, //operation mode set to cool
$01,$00, //ventillation mode set to auto
$01,$00, //ventillation amount set to auto
$41,$BC,$00,$00, //this is the temp value 73
$00, //fan speed
$00, //fan direction
$00, //filter sign reset
$00" //reserved 6
strDaikinTxBuffer = "strDaikinTxBuffer,cSendData,$FF,$FF,$FF"
See if that works!
Simon