Samsung AC Support, help needed

Without any progress,My device is Kelon powered by aliyunos, it uses the cloud MQTT server, I can not control the device in the LAN.

Didn’t have time to work again on this,
When I have time I want to check in the climate class to see if this can be integrated using that module

I would love to have Home Assistant supporting samsung smart air conditioning! i have four of those at home, but samsung app to control it is just terrible, too slow and always loosing credentials. it’s just a pain to use it.

and i think samsung uses two platforms for their smart ac’s! one of those platform is compatible with smartthings, but only a few ac’s are compatible: https://support.smartthings.com/hc/en-us/articles/207849103-Samsung-Room-Air-Conditioner

the other platform is: https://www.samsungsmartappliance.com/

Keen here too, Got samsung ducted air with the wifi module addon

uses samsungsmartappliance.com and the app is terrible and slow! would love to get this running

there is a new homebridge script that seems to work with samsung smart air conditioning! https://github.com/cicciovo/homebridge-samsung-airconditioner

anyone knows how to port it?

Hi

Just to avoid cross posting everything, I’m going to work on integrating my two units, as I mentioned in this other thread.

meanwhile i started using the some broadlink mini ir blasters to control the ac units! but if you manage to make the plugin! i will prefer that way! thanks freman

Good news, fosi.

I have it working on one AC, I have discovery working, I just have to marry the too and add the registration feature :smiley:

It’s just a matter of working around work and life in general

Hi Freman,
i’m interested too on this addon. Let me know if i can help testing.
thank you Freman!

Sorry I’ve been so terrible at keeping ya’ll up to date, work is hell and isn’t about to get any better. I hope to find some time over the weekends when I’m not working.

1 Like

Hi Freman,
I would also like to see this addon work. Let me know if I can help testing.
If you are out of time, can you send us/publish what you have and maybe we can finish it off?
Thanks!

+1 would love to have my Samsung AC integrated

I’m also waiting this thread.

I hace a Samsung ducted AC with the MIM-H02 box.

With Homebridge it works with HTTP with this:

#!/bin/bash

if [ “$4” == “true” ]; then
# encender
(sleep 5.0;echo -e “<Request Type=“AuthToken”><User Token=“xxx”/></Request>\r”;sleep 5.0;echo -e "<Request Type=“DeviceControl”><Control CommandID=“xxx” DUID=“xxx”><Attr $
fi

if [ “$4” == “false” ]; then
# apagar
(sleep 5.0;echo -e “<Request Type=“AuthToken”><User Token=“xxx”/></Request>\r”;sleep 5.0;echo -e "<Request Type=“DeviceControl”><Control CommandID=“xxx” DUID=“xxx”><Attr $
fi

if [ “$1” == “Get” ]; then
# leer estado
(sleep 5.0;echo -e “<Request Type=“AuthToken”><User Token=“xxx”/></Request>\r”;sleep 5.0;echo -e “<Request Type=“DeviceState” DUID=“xxx”>\r\n”;sleep 1.0)| openssl s_cl$
fi

I want to work the AC with Homekit (Port 2878)

does it works well with homebridge? no lag?

No more lag than the original Samsung Smart Appliance app.

But It’snt the best way to talk with the MIM-H2; one or two types I’ve had to wait until it responds again; like the MIM-H02 CPU is at 100% getting my orders :stuck_out_tongue:

the best way is to capture the commands that the wifi adapter sends and receives to/from the ac units, and then ditch the wifi adapter and develop one with something like mysensors! to completely remove samsung cloud and the tokens they use

Hi,
I tried this new script (https://www.npmjs.com/package/homebridge-plugin-samsung-air-conditioner) in homebridge and it works, it authenticates and it is possible to send the commands.
How can I use my Samsung air conditioner in the home assistant?

OMG! It works perfect with Homebridge. The next step, Home Assistant. My knowledges aren’t enough to get it done (yet) :kissing_smiling_eyes::kissing_smiling_eyes::kissing_smiling_eyes:

Hi,
If you have Samsung AC device which is listening on port 8888 (with new protocol) you can try custom component which I made to work with my unit. I hope it will work also for you.

BR,
Sebastian

I have one that is working on port 2878 :frowning:

I managed to integrate my AC by using Homebridge, but can’t get it work in HA or SmartThings :frowning:

Here is some useful links of someone will make integration for AC with port 2878 :
openhub: https://www.openhab.org/addons/bindings/samsungac1
node.js: https://github.com/CloCkWeRX/node-samsung-airconditioner
homebridge for port 8888: https://github.com/cicciovo/homebridge-samsung-airconditioner
homebridge for port 2878: https://www.npmjs.com/package/homebridge-plugin-samsung-air-conditioner