summaryrefslogtreecommitdiffstatshomepage
path: root/teensy/lcd.c
blob: e79b7d5acb1fc6d4e0120e0f90031ca067d70039 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "py/obj.h"
#include "../stmhal/lcd.h"

void lcd_init(void) {
}

void lcd_print_str(const char *str) {
    (void)str;
}

void lcd_print_strn(const char *str, unsigned int len) {
    (void)str;
    (void)len;
}