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

#ifndef _DISPLAY_H_
#define _DISPLAY_H_
void test();
void init();
void clear();
void write();
void draw();
void addDot(unsigned char x, unsigned char y);
void sAddDot(unsigned char x, unsigned char y);
void cacheLock();
void cacheUnlock();
unsigned char checkLock();
#endif