#!/usr/bin/env python from deps.samplebase import SampleBase from rgbmatrix import graphics from flask import Flask, request, jsonify from flask_cors import CORS, cross_origin from waitress import serve import time, threading api = Flask(__name__) cors = CORS(api) @api.route('/text', methods=['POST']) @cross_origin() def display_text(): # prepare response data response = { 'success': True } try: global matrix # receive client data data = request.form # try unpacking text and x,y coordinates text = data.get('text') x_coord = int(data.get('x')) y_coord = int(data.get('y')) # call matrix method with data matrix.text(x_coord, y_coord, text) except Exception as e: # error handling print(e) response['success'] = False # respond to client return jsonify(response) @api.route('/pixel', methods=['POST']) @cross_origin() def set_pixel(): # prepare response data response = { 'success': True } try: global matrix # receive client data data = request.form # try unpacking x,y coordinates x_coord = int(data.get('x')) y_coord = int(data.get('y')) # call matrix method with data matrix.pixel(x_coord, y_coord) except Exception as e: # error handling print(e) response['success'] = False # respond to client return jsonify(response) @api.route('/circle', methods=['POST']) @cross_origin() def draw_circle(): # prepare response data response = { 'success': True } try: global matrix # receive client data data = request.form # try unpacking radius and x,y coordinates radius = int(data.get('r')) x_coord = int(data.get('x')) y_coord = int(data.get('y')) # call matrix method with data matrix.circle(x_coord, y_coord, radius) except Exception as e: # error handling print(e) response['success'] = False # respond to client return jsonify(response) @api.route('/rectangle', methods=['POST']) @cross_origin() def draw_rectangle(): # prepare response data response = { 'success': True } try: global matrix # receive client data data = request.form # try unpacking rectangle width and height width = int(data.get('w')) height = int(data.get('h')) # try unpacking x,y coordinates x_coord = int(data.get('x')) y_coord = int(data.get('y')) # call matrix method with data matrix.rectangle(x_coord, y_coord, width, height) except Exception as e: # error handling print(e) response['success'] = False # respond to client return jsonify(response) @api.route('/color', methods=['POST']) @cross_origin() def set_color(): # prepare response data response = { 'success': True } try: global matrix # receive client data data = request.form # try unpacking red, green and blue color values red = int(data.get('r')) green = int(data.get('g')) blue = int(data.get('b')) # call matrix method with data matrix.set_color(red, green, blue) except Exception as e: # error handling print(e) response['success'] = False # respond to client return jsonify(response) @api.route('/clear', methods=['GET']) @cross_origin() def clear_canvas(): # prepare response data response = { 'success': True } try: global matrix # clear matrix canvas matrix.clear() except Exception as e: # error handling print(e) response['success'] = False return jsonify(response) @api.route('/update', methods=['GET']) @cross_origin() def update_matrix(): response = { 'success': True } try: global matrix # swap matrix canvas matrix.update() except Exception as e: print(e) response['success'] = False # respond to client return jsonify(response) # derived class to access rgb-led-matrix class Matrix(SampleBase): def __init__(self, *args, **kwargs): super(Matrix, self).__init__(*args, **kwargs) # run display program def run(self): # initialize font self.font = graphics.Font() self.font.LoadFont("deps/fonts/9x18B.bdf") # initialize color self.color = graphics.Color(255, 255, 255) # initialize canvas self.canvas = self.matrix.CreateFrameCanvas() self.canvas.Clear() # wait in idle while True: time.sleep(.05) # clear canvas def clear(self): self.canvas.Clear() # swap canvas with buffer def update(self): self.canvas = self.matrix.SwapOnVSync(self.canvas) self.clear() # set current color def set_color(self, r: int, g: int, b: int): self.color = graphics.Color(r, g, b) # set specified pixel to current color def pixel(self, x: int, y: int): self.canvas.SetPixel(x, y, self.color.red, self.color.green, self.color.blue) # display text at position with current color def text(self, x: int, y: int, t: int): graphics.DrawText(self.canvas, self.font, x*9, (y+1)*18, self.color, t) # display circle at position with radius in current color def circle(self, x: int, y: int, r: int): graphics.DrawCircle(self.canvas, x, y, r, self.color) # display rectangle at position with dimensions in current color def rectangle(self, x: int, y: int, w: int, h: int): # loop through each point in dimensions for i in range(w): for j in range(h): # set next pixel in rectangle self.canvas.SetPixel(x+i, y+j, self.color.red, self.color.green, self.color.blue) # initialize global matrix variable matrix = None if __name__ == "__main__": # set matrix to instance matrix = Matrix() # run rest api in thread, serving with 'waitress' threading.Thread(target=lambda: serve(api, host="0.0.0.0", port=8080)).start() # help menu on call if not matrix.process(): matrix.print_help()