12 lines
314 B
Python
Executable File
12 lines
314 B
Python
Executable File
# -*- coding: utf-8 -*-
|
|
"""A minimal OSC client and server library for MicroPython.
|
|
|
|
To use it with the unix port of MicroPython, install the required modules from
|
|
the micropython-lib:
|
|
|
|
$ for mod in argparse ffilib logging socket struct; do
|
|
micropython -m upip install micropython-$mod
|
|
done
|
|
|
|
"""
|