Metadata-Version: 2.1
Name: microbitdongle
Version: 0.3.7
Summary: UNKNOWN
Home-page: https://github.com/lukespademan/microbitdongle
Author: Luke Spademan
Author-email: info@lukespademan.com
License: UNKNOWN
Download-URL: https://github.com/lukespademan/microbitdongle/archive/0.1.tar.gz
Platform: UNKNOWN
Requires-Dist: pyserial

# microbitdongle
## About
Microbitdongle allows you to communicate with a micro:bit over serial.

## Installation / Usage
To install type `pip install microbitdongle` into a terminal.

Here is some example code
python```
from microbitdongle import Dongle

mb = Dongle(debug=True)  # debug=False by default. Shows useful pairing information

while True:
    data = mb.recv()
    print(data)
```

you can also send data to the micro:bit usin `mb.send("display.scroll('hi')\r")`


