Metadata-Version: 2.4
Name: duelink-stdlib-mp
Version: 0.1.1
Summary: GHI Electronics DUELink MicroPython Library.
Home-page: https://www.duelink.com/
Author: GHI Electronics
Author-email: support@ghielectronics.com
License: MIT
Project-URL: Bug Reports, https://github.com/ghi-electronics/duelink-libraries/issues
Project-URL: Source, https://github.com/ghi-electronics/duelink-libraries/tree/main/micropython
Keywords: due,duelink,ghi
Classifier: Programming Language :: Python :: Implementation :: MicroPython
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: project-url
Dynamic: summary

GHI Electronics DUELink Standard Library for MicroPython

Example on DuePico:

```py
import duelink  # standard lib
from duelink import transport

due = duelink.DUELinkController(transport.UartTransportController(0))

# Play beep on pin 11 on DuePico
due.Sound.Beep(11, 1000, 500)

# Blink status led 10 times, delay 100ms each time
due.System.StatLed(100, 100, 10)
```
