Metadata-Version: 1.1
Name: microbitdongle
Version: 0.3.12
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
Description: 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
        
        .. 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")`
        
Platform: UNKNOWN
