├── .gitignore ├── LICENSE ├── README.md ├── examples ├── gif_example1.py ├── gif_example2.py ├── resources │ ├── bubbles_28x28.gif │ └── bubbles_70x28.gif └── test_pattern.py ├── flippydot ├── __init__.py ├── flippydot.py └── flippymodule.py ├── requirements.txt ├── resources ├── 14x28_7x28_FLIPDOTS Sign REV9 - Manual.pdf ├── Flip_dots_protocols_7x7_7x14_7x28_May_2017.pdf ├── example_display.gif ├── usb_to_rs485.jpg └── usb_to_rs485_sm.jpg ├── setup.py └── test └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishemmings/flipPyDot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishemmings/flipPyDot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishemmings/flipPyDot/HEAD/README.md -------------------------------------------------------------------------------- /examples/gif_example1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishemmings/flipPyDot/HEAD/examples/gif_example1.py -------------------------------------------------------------------------------- /examples/gif_example2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishemmings/flipPyDot/HEAD/examples/gif_example2.py -------------------------------------------------------------------------------- /examples/resources/bubbles_28x28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishemmings/flipPyDot/HEAD/examples/resources/bubbles_28x28.gif -------------------------------------------------------------------------------- /examples/resources/bubbles_70x28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishemmings/flipPyDot/HEAD/examples/resources/bubbles_70x28.gif -------------------------------------------------------------------------------- /examples/test_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishemmings/flipPyDot/HEAD/examples/test_pattern.py -------------------------------------------------------------------------------- /flippydot/__init__.py: -------------------------------------------------------------------------------- 1 | from .flippydot import Panel 2 | -------------------------------------------------------------------------------- /flippydot/flippydot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishemmings/flipPyDot/HEAD/flippydot/flippydot.py -------------------------------------------------------------------------------- /flippydot/flippymodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishemmings/flipPyDot/HEAD/flippydot/flippymodule.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy>=1.18 2 | pyserial>=3.4 3 | -------------------------------------------------------------------------------- /resources/14x28_7x28_FLIPDOTS Sign REV9 - Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishemmings/flipPyDot/HEAD/resources/14x28_7x28_FLIPDOTS Sign REV9 - Manual.pdf -------------------------------------------------------------------------------- /resources/Flip_dots_protocols_7x7_7x14_7x28_May_2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishemmings/flipPyDot/HEAD/resources/Flip_dots_protocols_7x7_7x14_7x28_May_2017.pdf -------------------------------------------------------------------------------- /resources/example_display.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishemmings/flipPyDot/HEAD/resources/example_display.gif -------------------------------------------------------------------------------- /resources/usb_to_rs485.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishemmings/flipPyDot/HEAD/resources/usb_to_rs485.jpg -------------------------------------------------------------------------------- /resources/usb_to_rs485_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishemmings/flipPyDot/HEAD/resources/usb_to_rs485_sm.jpg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishemmings/flipPyDot/HEAD/setup.py -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishemmings/flipPyDot/HEAD/test/test.py --------------------------------------------------------------------------------