Merge commit '90d618c2671455b79efd936f0efc48aa308ad5b8'
This commit is contained in:
commit
69a1bf506c
2 changed files with 11 additions and 6 deletions
|
@ -3,11 +3,11 @@
|
|||
#include "draw.h"
|
||||
#include <reg52.h>
|
||||
|
||||
sbit RS = P3 ^ 0;
|
||||
sbit RW = P3 ^ 1;
|
||||
sbit E = P3 ^ 2;
|
||||
sbit CSA = P3 ^ 4;
|
||||
sbit CSB = P3 ^ 5;
|
||||
sbit RS = P2 ^ 0;
|
||||
sbit RW = P2 ^ 1;
|
||||
sbit E = P2 ^ 2;
|
||||
sbit CSA = P2 ^ 4;
|
||||
sbit CSB = P2 ^ 5;
|
||||
|
||||
void drawNUMBER()
|
||||
{
|
||||
|
|
|
@ -1,2 +1,7 @@
|
|||
#ifndef _DRAW_H_
|
||||
#define _DRAW_H_
|
||||
|
||||
void drawNAME();
|
||||
void drawNUMBER();
|
||||
|
||||
#endif
|
Reference in a new issue