Skip to content

A CircuitPython library to display the state of a pin using displayio graphics

License

Notifications You must be signed in to change notification settings

kevinjwalters/CircuitPython_DisplayPin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

This is CircuitPython library which provides a graphical representation of values read from or written to the GPIO pads/pins using displayio.

Dependencies

This library depends on:

Usage Example

import board
import analogio
import display_pin

dp_pin1 = display_pin.DisplayPin("P1", "read_analog")
board.DISPLAY.show(dp_pin1.group)
pin1 = analogio.AnalogIn(board.P1)
while True:
    dp_pin1.value = pin1.value

About

A CircuitPython library to display the state of a pin using displayio graphics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages