Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
LCD1.cpp
- Committer:
- asloop18
- Date:
- 2016-01-14
- Revision:
- 6:459d1eb2cc23
- Parent:
- 2:a88824178246
File content as of revision 6:459d1eb2cc23:
#include "LCD1.h"
#include "stdio.h"
#include "string"
#include "ILI932x.h"
#include "Arial12x12.h"
#include "Arial24x23.h"
#include "pavement_48x34.h"
//Serial pc(USBTX, USBRX);
PinName dataBus[]= {p30, p29, p28, p27, p26, p25, p24, p23};
ILI932x myLCD(BUS_8, dataBus, p15, p17, p16, p14, p20, "myLCD", 240, 320); // Bus 8 bit, bus pin array, CS, RST, DC, WR, RD, name, xpixels, ypixels
char orient=3;
int pos1=160;
int pos2=120;
int direction1= 0;
int direction2= 0;
void LCD_init()
{
myLCD.set_orientation(orient);
myLCD.background(Black);
myLCD.cls();
}
void LCD1(int x,int y)
{
myLCD.fillcircle(x,y,6,Black);
}
void LCD2(int x,int y)
{
myLCD.fillcircle(x,y,6,Red);
myLCD.circle(160,120,12,White);
}
