2015-01-01 21:13:30 +00:00
|
|
|
#include "py/obj.h"
|
2014-06-16 06:33:14 +01:00
|
|
|
#include "../stmhal/lcd.h"
|
2014-01-07 17:49:42 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|