Skip to main content

Library for remotely interfacing with the Momit Cool air conditioning controller.

Project description

https://img.shields.io/:license-mit-blue.svg https://badge.fury.io/py/py-momit-cool-remote.svg http://alphaclima.gr/store/wp-content/uploads/2017/03/momit-cool-logo.jpg

py-momit-cool-remote is a Python 3 library for remotely controlling your air conditioning unit through the use of the Momit Cool.

The Momit Cool is a small device that can be attached to your AC, allowing you to control it from your smart phone. In order to accomplish remote control from anywhere, commands are sent to their central server, which then sends them to your Momit Gateway device. py-momit-cool-remote communicates directly with the Momit Gateway, completely circumventing Momit’s servers.

https://www.momit.com/en-ro/products/cool

Note: Python 3.5 and newer only.

Installation

$ pip install py-momit-cool-remote

Make sure that pip refers to the pip installation for Python 3. You might have to install the package using pip3.

Example usage

from momitcool import MomitCool

cool = MomitCool('192.168.3.164')
cool.cool() # turn on in cooling mode
cool.off() # turn off
cool.temperature() # get current temperature
cool.mode() # cooling/heating/off
$ momit-cool --host 192.168.3.164 --cool
$ momit-cool --host 192.168.3.164 --off
$ momit-cool --host 192.168.3.164 --temperature
$ momit-cool --host 192.168.3.164 --mode

Details

The Momit Cool is a commercial, closed source product that does not have any documentation on how communication is performed. All of the information provided in this repository was found by reverse engineering the protocol. I uncovered most of the information by ARP poisoning and intercepting the traffic between the Momit Gateway and the Momit servers. The Momit Gateway communicates over the CoAP protocol.

CoAP servers typically implement the CoRE standard, allowing service and resource discovery. Performing this on the Momit Cool Gateway allows us to retrieve a list of available resources:

coap get coap://192.168.3.164:11686/.well-known/core

</.well-known/core>;ct=40,
<//>;title="Default root resource",
</0/1>;title="Security: PUT value";rt="Security",
</1/1>;title="Server: PUT value";rt="Server",
</3/0/12>;title="Init Bootstrapping";rt="Init Bootstrapping",
</3/0/0>;title="Manufacturer";rt="Manufacturer",
</3/0/1>;title="Model Number";rt="Model Number",
</3/0/2>;title="Serial Number";rt="Serial Number",
</3/0/3>;title="FW version";rt="FW version",
</3/0/4>;title="Reboot";rt="Reboot",
</3/0/5>;title="Factory Reset";rt="Factory Reset",
</3/0/16>;title="HW version";rt="HW version",
</4/0/4>;title="Ip";rt="IPv6",
</3/0/14>;title="Tx powerl";rt="TX power",
</3/0/15>;title="Channel: PUT value";rt="Channel",
</10241/0/0>;title="TEM-HUM-BAT";obs,
</10243/0/6>;title="factory_programming: PUT value";rt="factory_programming",
</10243/0/10>;title="Router ip";rt="IPv6 Router",
</10243/0/12>;title="ServerIp";rt="ServerIp",
</10243/0/13>;title="Neighbours";rt="Neighbours",
</10243/0/20>;title="HW version";rt="HW version",
</10243/0/21>;title="HW version";rt="HW version",
</5/0/0>;title="FW package can be updated using PUT method";rt="block";sz="MAX_PLUGFEST_BODY",
</5/0/2>;title="fw_update";rt="fw_update",
</5/0/3>;title="fw_state";rt="fw_state",
</5/0/5>;title="fw_update_result";rt="fw_update_result",
</3/0/10>


coap get coap://192.168.3.164:15395/.well-known/core
</.well-known/core>;ct=40,
<//>;title="Default root resource",
</0/1>;title="Security: PUT value";rt="Security",
</1/1>;title="Server: PUT value";rt="Server",
</3/0/12>;title="Init Bootstrapping";rt="Init Bootstrapping",
</3/0/0>;title="Manufacturer";rt="Manufacturer",
</3/0/1>;title="Model Number";rt="Model Number",
</3/0/2>;title="Serial Number";rt="Serial Number",
</3/0/3>;title="FW version";rt="FW version",
</3/0/4>;title="Reboot";rt="Reboot",
</3/0/5>;title="Factory Reset";rt="Factory Reset",
</3/0/9>;title="Battery status";rt="Battery",
</3/0/14>;title="Tx powerl";rt="TX power",
</3/0/15>;title="Channel: PUT value";rt="Channel",
</3/0/16>;title="HW version";rt="HW version",
</5/0/0>;title="FW package can be updated using PUT method";rt="block";sz="MAX_PLUGFEST_BODY",
</5/0/2>;title="fw_update";rt="fw_update",
</5/0/3>;title="fw_state";rt="fw_state",
</3/0/10>,
</5/0/5>;title="fw_update_result";rt="fw_update_result",
</10241/0/0>;title="TEM-HUM-BAT";obs,
</10242/0/0>;title="Events";obs,
</10243/0/1>;title="Cal Temp: PUT value";rt="Cal Temp",
</10243/0/2>;title="Cal Hum: PUT value";rt="Cal Hum",
</10243/0/6>;title="Hysteresis: PUT value";rt="Hysteresis",
</10243/0/10>;title="Router ip";rt="IPv6 Router",
</10243/0/11>;title="Error code";rt="HW",
</10243/0/12>;title="ServerIp";rt="ServerIp",
</10243/0/13>;title="Neighbours";rt="Neighbours",
</10243/0/16>;title="SetPoint event";obs,
</10244/0/0>;title="IR capture command,
</10244/0/1>;title="IR Status Command";obs,
</10244/0/2>;title="IR Send Command,
</10244/0/3>;title="IR Autocheck: PUT value";rt="IR Autocheck",
</10244/0/4>;title="IR TX Mode: PUT value";rt="IR TX Mode",
</10243/0/20>;title="HW version";rt="HW version",
</10243/0/21>;title="HW version";rt="HW version"

Turning on

PUT /10242/0/0
Content-Format: 1541
cm=cool,t=1335,sp=210

Turning off

PUT /10242/0/0
Content-Format: 1541
cm=cool,t=0,sp=off

References

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

py-momit-cool-remote-1.1.tar.gz (6.8 kB view details)

Uploaded Source

File details

Details for the file py-momit-cool-remote-1.1.tar.gz.

File metadata

  • Download URL: py-momit-cool-remote-1.1.tar.gz
  • Upload date:
  • Size: 6.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.5

File hashes

Hashes for py-momit-cool-remote-1.1.tar.gz
Algorithm Hash digest
SHA256 737a05e7e6073326f9b47f4eb30caa9fb36a7d54c4f2851c8f03b0833223e1ab
MD5 b35a4968d941286f42f253b618a22052
BLAKE2b-256 5a4bee02e68cb3a66481ea4b257ffcbf19951d402b2b20afd1a3b6b4da1e0e08

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page