Control your Midea M-Smart appliances via local area network
Project description
Midea-local python lib
Control your Midea M-Smart appliances via local area network.
This library is part of https://github.com/georgezhao2010/midea_ac_lan code. It was separated to segregate responsibilities.
⭐If this component is helpful for you, please star it, it encourages me a lot.
Getting started
Finding your device
from midealocal.discover import discover
# Without knowing the ip address
discover()
# If you know the ip address
discover(ip_address="203.0.113.11")
# The device type is in hexadecimal as in midealocal/devices/TYPE
type_code = hex(list(discover().values())[0]['type'])[2:]
Getting data from device
from midealocal.discover import discover
from midealocal.devices import device_selector
token = '...'
key = '...'
# Get the first device
d = list(discover().values())[0]
# Select the device
ac = device_selector(
name="AC",
device_id=d['device_id'],
device_type=d['type'],
ip_address=d['ip_address'],
port=d['port'],
token=token,
key=key,
protocol=d['protocol'],
model=d['model'],
subtype=0,
customize="",
)
# Connect and authenticate
ac.connect()
# Getting the attributes
print(ac.attributes)
# Setting the temperature
ac.set_target_temperature(23.0, None)
# Setting the swing
ac.set_swing(False, False)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file midea_local_ben-6.1.0.tar.gz.
File metadata
- Download URL: midea_local_ben-6.1.0.tar.gz
- Upload date:
- Size: 94.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5745697667225dc43caa2fb192baf2b15c4501f7b8a36961d18d9b6aa1d93a4
|
|
| MD5 |
8b064c3cf5f081938131242ec92647ce
|
|
| BLAKE2b-256 |
2cf0afb0a6041e1f9e23f3ee8abed559f40559a82a738f8b1ffb090f8f8c9ab3
|
File details
Details for the file midea_local_ben-6.1.0-py3-none-any.whl.
File metadata
- Download URL: midea_local_ben-6.1.0-py3-none-any.whl
- Upload date:
- Size: 151.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c70d068f2533871828702a537ee2f9e5424bb84e8f8e46bfb2a86df23739f6f6
|
|
| MD5 |
a65e52e8beefca9dd3ee5aca6ce809b0
|
|
| BLAKE2b-256 |
126fc8153d4792ca28e9564fdc21669a17e5e40a7cbcae3a2cab293aed6afc71
|