Metadata-Version: 2.0
Name: pynbp
Version: 0.0.6
Summary: Python implementation of the HP Tuners Track Addict Numeric Broadcast Protocol (V1.0)
Home-page: https://github.com/tmkdev/pynbp
Author: Terry Kolody
Author-email: tekolody@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Requires-Dist: pyserial

# pynbp - Python Numeric Broadcast Protocol

Python Numeric Broadcast Protocol

This module implements HP Tuners / Track Addict Numeric Broadcast Protocol

http://racerender.com/TrackAddict/docs/NBP%20Specification%20V1.pdf

Example:
        $ python examples/example1.py

Attributes:
    nbpqueue - queue.Queue() for sending payloads into the class
        - Format: NbpPayload(timetamp, packettype, kpilist)
    device: Bluetooth Serial device for comms
    device_name: Device name sent via metadata packet to host
    protocol_version: NBP1 as defined. 
    max_update_interval: Minimum interval to send packets. If using this with high rate senders, send 'ALL' packets as updates will miss updates. 

    See racerender docs for unit types.

Requirements:
 -  pyserial


Install:
pip install pynbp
or
python setup.py install 


