#!/usr/bin/env python3 """ RaSCSI Updates: Updates to output rascsi status to an OLED display Copyright (C) 2020 Tony Kuker Author: Tony Kuker Developed for: https://www.makerfocus.com/collections/oled/products/2pcs-i2c-oled-display-module-0-91-inch-i2c-ssd1306-oled-display-module-1 All other code: Copyright (c) 2017 Adafruit Industries Author: Tony DiCola & James DeVito Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ import argparse import sys from time import sleep from collections import deque from board import I2C from adafruit_ssd1306 import SSD1306_I2C from PIL import Image, ImageDraw, ImageFont from interrupt_handler import GracefulInterruptHandler from pi_cmds import get_ip_and_host from rascsi.ractl_cmds import RaCtlCmds from rascsi.socket_cmds import SocketCmds parser = argparse.ArgumentParser(description="RaSCSI OLED Monitor script") parser.add_argument( "--rotation", type=int, choices=[0, 180], default=180, action="store", help="The rotation of the screen buffer in degrees", ) parser.add_argument( "--height", type=int, choices=[32, 64], default=32, action="store", help="The pixel height of the screen buffer", ) parser.add_argument( "--password", type=str, default="", action="store", help="Token password string for authenticating with RaSCSI", ) parser.add_argument( "--rascsi-host", type=str, default="localhost", action="store", help="RaSCSI host. Default: localhost", ) parser.add_argument( "--rascsi-port", type=str, default=6868, action="store", help="RaSCSI port. Default: 6868", ) args = parser.parse_args() if args.rotation == 0: ROTATION = 0 elif args.rotation == 180: ROTATION = 2 if args.height == 64: HEIGHT = 64 LINES = 8 elif args.height == 32: HEIGHT = 32 LINES = 4 TOKEN = args.password sock_cmd = SocketCmds(host=args.rascsi_host, port=args.rascsi_port) ractl_cmd = RaCtlCmds(sock_cmd=sock_cmd, token=TOKEN) WIDTH = 128 BORDER = 5 # How long to delay between each update DELAY_TIME_MS = 1000 # Define the Reset Pin OLED_RESET = None # init i2c I2C = I2C() # 128x32 display with hardware I2C: OLED = SSD1306_I2C(WIDTH, HEIGHT, I2C, addr=0x3C, reset=OLED_RESET) OLED.rotation = ROTATION print("Running with the following display:") print(OLED) print() print("Will update the OLED display every " + str(DELAY_TIME_MS) + "ms (approximately)") # Show a startup splash bitmap image before starting the main loop # Convert the image to mode '1' for 1-bit color (monochrome) # Make sure the splash bitmap image is in the same dir as this script IMAGE = Image.open(f"resources/splash_start_{HEIGHT}.bmp").convert("1") OLED.image(IMAGE) OLED.show() # Keep the pretty splash on screen for a number of seconds sleep(4) # Get drawing object to draw on image. DRAW = ImageDraw.Draw(IMAGE) # Draw a black filled box to clear the image. DRAW.rectangle((0, 0, WIDTH, HEIGHT), outline=0, fill=0) # Draw some shapes. # First define some constants to allow easy resizing of shapes. # Depending on the font used, you may want to change the value of PADDING PADDING = 0 TOP = PADDING BOTTOM = HEIGHT - PADDING # Move left to right keeping track of the current x position for drawing shapes. X_POS = 0 # Font size in pixels. Not all TTF fonts have bitmap representations for all sizes. FONT_SIZE = 8 # Vertical spacing between each line of text. Adjust in accordance with font size. # Depending on the design of the font glyphs, this may be larger than FONT_SIZE. LINE_SPACING = 8 # Load a TTF font for rendering glyphs on the screen. # Make sure the .ttf font file is in the same directory as the python script! # When using other fonts, you may need to adjust PADDING, FONT_SIZE, # LINE_SPACING, and LINES. # Some other nice fonts to try: http://www.dafont.com/bitmap.php FONT = ImageFont.truetype('resources/type_writer.ttf', FONT_SIZE) IP_ADDR, HOSTNAME = get_ip_and_host() def formatted_output(): """ Formats the strings to be displayed on the Screen Returns a (list) of (str) output """ rascsi_list = ractl_cmd.list_devices()['device_list'] output = [] if not TOKEN and not ractl_cmd.is_token_auth()["status"]: output.append("Permission denied!") elif rascsi_list: for line in rascsi_list: if line["device_type"] in ("SCCD", "SCRM", "SCMO"): # Print image file name only when there is an image attached if line["file"]: output.append(f"{line['id']} {line['device_type'][2:4]} " f"{line['file']} {line['status']}") else: output.append(f"{line['id']} {line['device_type'][2:4]} {line['status']}") # Special handling for the DaynaPort device elif line["device_type"] == "SCDP": output.append(f"{line['id']} {line['device_type'][2:4]} {line['vendor']} " f"{line['product']}") # Special handling for the Host Bridge device elif line["device_type"] == "SCBR": output.append(f"{line['id']} {line['device_type'][2:4]} {line['product']}") # Print only the Vendor/Product info if it's not generic RaSCSI elif line["vendor"] not in "RaSCSI": output.append(f"{line['id']} {line['device_type'][2:4]} {line['file']} " f"{line['vendor']} {line['product']} {line['status']}") else: output.append(f"{line['id']} {line['device_type'][2:4]} {line['file']} " f"{line['status']}") else: output.append("No image mounted!") if IP_ADDR: output.append(f"IP {IP_ADDR} - {HOSTNAME}") else: output.append("RaSCSI has no IP address") output.append("Check network connection") return output with GracefulInterruptHandler() as handler: while True: # The reference snapshot of attached devices that will be compared against each cycle # to identify changes in RaSCSI backend ref_snapshot = formatted_output() # The snapshot updated each cycle that will compared with ref_snapshot snapshot = ref_snapshot # The active output that will be displayed on the screen active_output = deque(snapshot) while snapshot == ref_snapshot: # Draw a black filled box to clear the image. DRAW.rectangle((0, 0, WIDTH, HEIGHT), outline=0, fill=0) Y_POS = TOP for output_line in active_output: DRAW.text((X_POS, Y_POS), output_line, font=FONT, fill=255) Y_POS += LINE_SPACING # Shift the index of the array by one to get a scrolling effect if len(active_output) > LINES: active_output.rotate(-1) # Display image. OLED.image(IMAGE) OLED.show() sleep(1000/DELAY_TIME_MS) snapshot = formatted_output() if handler.interrupted: # Catch interrupt signals and blank out the screen DRAW.rectangle((0, 0, WIDTH, HEIGHT), outline=0, fill=0) OLED.image(IMAGE) OLED.show() sys.exit("Shutting down the OLED display...")