RASCSI/src/oled_monitor
Daniel Markstedt 0f222df9a2
Make the OLED script work on Bullseye (#470)
* Add check for gcc 10+ and inject compiler flaggs

* Bump Python libraries
2021-11-14 19:48:46 -06:00
..
.pylintrc Refactoring of OLED screen Python script (#413) 2021-11-02 20:20:42 -05:00
interrupt_handler.py Refactoring of OLED screen Python script (#413) 2021-11-02 20:20:42 -05:00
monitor_rascsi.service Updates for running on Bullseye (#469) 2021-11-14 19:34:24 +01:00
pi_cmds.py Refactoring of OLED screen Python script (#413) 2021-11-02 20:20:42 -05:00
ractl_cmds.py Transliterate non-ASCII for display on the screen (#449) 2021-11-13 19:44:09 -06:00
rascsi_oled_monitor.py Add support for 64px OLED screen height (#448) 2021-11-13 19:40:49 -06:00
README.md Add support for 64px OLED screen height (#448) 2021-11-13 19:40:49 -06:00
requirements.txt Make the OLED script work on Bullseye (#470) 2021-11-14 19:48:46 -06:00
socket_cmds.py Refactoring of OLED screen Python script (#413) 2021-11-02 20:20:42 -05:00
splash_start_32.bmp Add support for 64px OLED screen height (#448) 2021-11-13 19:40:49 -06:00
splash_start_64.bmp Add support for 64px OLED screen height (#448) 2021-11-13 19:40:49 -06:00
splash_stop_32.bmp Add support for 64px OLED screen height (#448) 2021-11-13 19:40:49 -06:00
splash_stop_64.bmp Add support for 64px OLED screen height (#448) 2021-11-13 19:40:49 -06:00
start.sh Make the OLED script work on Bullseye (#470) 2021-11-14 19:48:46 -06:00
type_writer.ttf Use Type Writer font on the OLED screen (Author: Mandy Smith) (#377) 2021-10-25 17:41:36 -05:00

RaSCSI OLED Screen

Run as standalone script for development / troubleshooting

# Make a virtual env named venv
$ python3 -m venv venv
# Use that virtual env in this shell
$ source venv/bin/activate
# Install requirements
$ pip3 install -r requirements.txt
$ python3 rascsi_oled_monitor.py

Parameters

The script takes two positional parameters:

  • '0' or '180' which decides the screen rotation
  • '32' or '64' which decides the vertical screen resolution in pixels

Ex.

$ python3 rascsi_oled_monitor.py 180 64

Note: Both parameters must be passed for the script to read them. Ordering is also important.

Run the start.sh script standalone

The start.sh script can also be run standalone, and will handle the venv creation/updating for you. It takes the same command line parameters in the following format:

$ ./start.sh --rotation=180 --height=64

Static analysis with pylint

It is recommended to run pylint against new code to protect against bugs and keep the code readable and maintainable. The local pylint configuration lives in .pylintrc (symlink to ../.pylintrc)

$ sudo apt install pylint3
$ pylint3 python_source_file.py

Credits

type_writer.ttf

splash_start_*.bmp, splash_stop_*.bmp

  • Drawn by Daniel Markstedt
  • Distributed under BSD 3-Clause by permission from author (see LICENSE for full text)