KNX with micropython
Posted: Sun Oct 28, 2018 1:29 pm
Hello,
KNX is an international standard for HomeAutomation.
I would like to use it with MicroPython. I found these libraries:
https://pypi.org/project/knx/
https://xknx.io/
https://github.com/usul27/homecontrol/tree/master/knx
https://github.com/knxd/PyKNyX
https://www.pknyx.org/
I am wondering whether one of these libraries is likely to work with micropython.
Especially this one (https://github.com/usul27/homecontrol) seems to have few requirements:
import socket
import threading
import SocketServer
import sys
import logging
But also this one has few requirements:
https://github.com/mfussenegger/knx
import asyncio as aio
import socket
import struct
from collections import namedtuple
from setuptools import setup
What's yor view?
Regards,
Hendrik
KNX is an international standard for HomeAutomation.
I would like to use it with MicroPython. I found these libraries:
https://pypi.org/project/knx/
https://xknx.io/
https://github.com/usul27/homecontrol/tree/master/knx
https://github.com/knxd/PyKNyX
https://www.pknyx.org/
I am wondering whether one of these libraries is likely to work with micropython.
Especially this one (https://github.com/usul27/homecontrol) seems to have few requirements:
import socket
import threading
import SocketServer
import sys
import logging
But also this one has few requirements:
https://github.com/mfussenegger/knx
import asyncio as aio
import socket
import struct
from collections import namedtuple
from setuptools import setup
What's yor view?
Regards,
Hendrik