Metadata-Version: 2.1
Name: runninglight
Version: 0.1.0
Summary: Package for controlling an LED running light that is hooked up to a Raspberry Pi
Home-page: https://github.com/TimHanewich/RunningLightControl
Author: Tim Hanewich
Author-email: tahanewich@live.com
License: UNKNOWN
Description: Running Light Control
        ======================
        A light-weight package for controlling a raspberry-pi connected LED running light.  
        ### Example code:
        
            import RPi.GPIO as GPIO
            import runninglight
            import time
        
        
            #Pin for the light
            MPIN = 3
        
            #set up
            GPIO.setmode(GPIO.BCM)
            GPIO.setup(MPIN, GPIO.OUT)
        
            #create
            rlm = runninglight.runninglightmanager(MPIN)
        
            #run
            rlm.set_mode(runninglight.light_mode.doubleblink_1sec)
            rlm.start()
            print("Started!")
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
