mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
17 lines
439 B
Python
17 lines
439 B
Python
|
import _mqtt
|
||
|
|
||
|
|
||
|
class MQTT(_mqtt._MQTT):
|
||
|
def __init__(self,
|
||
|
ip: str,
|
||
|
port=1883,
|
||
|
clinetID='mac',
|
||
|
username='',
|
||
|
password='',
|
||
|
version='3.1.1',
|
||
|
ca='',
|
||
|
keepalive=60):
|
||
|
super().__init__(ip, port, clinetID,
|
||
|
username, password, version,
|
||
|
ca, keepalive)
|