Skip to content
Snippets Groups Projects
Select Git revision
  • 44c48cc932e83c6cc7813d590fbad5163020cee6
  • master default protected
  • ecg-ledupdate
  • ecg-app-pause
  • ecg-app
  • remove-debug-bhi160
  • docs-power
  • clock-colors
  • ble-text-color
  • menu-timeout
  • update-menu
  • rahix/batt
  • genofire/ble-rewrite
  • renze/safe_mode
  • renze/hatchery_apps
  • schneider/fundamental-test
  • koalo/factory-reset
  • ios-workarounds
  • msgctl/gfx_rle
  • msgctl/faultscreen
  • msgctl/textbuffer_api
  • v1.1
  • v1.0
  • release-1
  • bootloader-v1
  • v0.0
26 results

sys_display.c

Blame
  • Forked from card10 / firmware
    Source project has a limited visibility.
    sys_display.c 6.49 KiB
    #include "epicardium.h"
    
    #include "py/obj.h"
    #include "py/objint.h"
    #include "py/objstr.h"
    #include "py/runtime.h"
    
    #include <stdio.h>
    
    static uint16_t rgb888_to_rgb565(uint8_t *bytes)
    {
    	return ((bytes[0] & 0b11111000) << 8) | ((bytes[1] & 0b11111100) << 3) |
    	       (bytes[2] >> 3);
    }
    
    static uint16_t get_color(mp_obj_t color_in)
    {
    	if (mp_obj_get_int(mp_obj_len(color_in)) < 3) {
    		mp_raise_ValueError("color must have 3 elements");
    	}
    
    	uint8_t red = mp_obj_get_int(
    		mp_obj_subscr(color_in, mp_obj_new_int(0), MP_OBJ_SENTINEL)
    	);
    	uint8_t green = mp_obj_get_int(
    		mp_obj_subscr(color_in, mp_obj_new_int(1), MP_OBJ_SENTINEL)
    	);
    	uint8_t blue = mp_obj_get_int(
    		mp_obj_subscr(color_in, mp_obj_new_int(2), MP_OBJ_SENTINEL)
    	);
    	uint8_t colors[3] = { red, green, blue };
    	return rgb888_to_rgb565(colors);
    }
    
    /* print something on the display */
    static mp_obj_t mp_display_print(size_t n_args, const mp_obj_t *args)
    {
    	if (!mp_obj_is_str_or_bytes(args[0])) {
    		mp_raise_TypeError("input text must be a string");
    	}
    	GET_STR_DATA_LEN(args[0], print, print_len);
    	uint32_t posx = mp_obj_get_int(args[1]);
    	uint32_t posy = mp_obj_get_int(args[2]);
    	uint32_t fg   = get_color(args[3]);
    	uint32_t bg   = get_color(args[4]);
    	int res = epic_disp_print(posx, posy, (const char *)print, fg, bg);
    	if (res < 0) {
    		mp_raise_OSError(-res);
    	}
    	return mp_const_none;
    }
    static MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(
    	display_print_obj, 5, 5, mp_display_print
    );
    
    /* draw pixel on the display */
    static mp_obj_t mp_display_pixel(size_t n_args, const mp_obj_t *args)
    {
    	uint16_t x   = mp_obj_get_int(args[0]);
    	uint16_t y   = mp_obj_get_int(args[1]);
    	uint16_t col = get_color(args[2]);
    
    	//TODO: Move sanity checks to epicardium
    	if (x >= 160 || x < 0) {
    		mp_raise_ValueError("X-Coords have to be 0 <= x < 160");
    	}
    
    	if (y >= 80 || y < 0) {
    		mp_raise_ValueError("Y-Coords have to be 0 <= y < 80");
    	}