This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
justhomework/MCU/Final_Design_FAIL/display.h

15 lines
275 B
C
Raw Normal View History

2022-05-07 05:56:47 +00:00
#ifndef _DISPLAY_H_
#define _DISPLAY_H_
void test();
void init();
void clear();
void write();
void draw();
2022-05-07 06:48:25 +00:00
void addDot(unsigned char x, unsigned char y);
2022-05-07 11:39:50 +00:00
void sAddDot(unsigned char x, unsigned char y);
void cacheLock();
void cacheUnlock();
unsigned char checkLock();
2022-05-07 05:56:47 +00:00
#endif