Features:
- Display construction:128*64 DOTS.
- Display mode: STN / Yellow Green.
- Display type: Positive Tranflective.
- Operating temperature: Indoor.
- Number of data line: 8-bit parallel.
- Voltage: 5V.
- Easy to use code library
- Many fonts available
- High quality PCB FR4 Grade with FPT Certified.
Package Contains :
- Graphical LCD Interfacing Board.
- Datasheet (Graphical LCD Interfacing Board)
- Circuit Diagram (Graphical LCD Interfacing Board)
Customers who bought this product also commonly purchased the following combination of items.
- This Item: Graphical LCD Interfacing Board
-
Jumper Wire - Female Pack of 5
-
Audio Breakout Board
-
4 Channel Opto-Isolated Board Input 5V to 5V
-
RDL UNO ATMEGA328 Development Board 3 in 1=Uno+Memory Shield+Xbee Footprint
-
Total Price ₹2,639.00
Questions:
-
0voteA:
Dear Sir,
Kindly go through the details.Model Number: JHD12864EDimension: 93X70 mm.Posted byon Friday, 18 November 2016
-
0voteA:
Dear Sir,
Please find the ardiuno code below,
/*
GLCD Library - Hello World
This sketch prints "Hello World!" to the LCD
and shows the time in seconds since reset.
The circuit:
See the inlcuded documentation in glcd/doc directory for how to wire
up the glcd module. glcd/doc/GLCDref.htm can be viewed in your browser
by clicking on the file.
*/
// include the library header
#include <glcd.h>
// include the Fonts
#include <fonts/allFonts.h>
void setup() {
// Initialize the GLCD
GLCD.Init();
// Select the font for the default text area
GLCD.SelectFont(System5x7);
GLCD.print("hello, world!");
}
void loop() {
// set the cursor to column 0, line 1
// (note: line 1 is the second row, since counting begins with 0):
GLCD.CursorTo(0, 1);
// print the number of seconds since reset:
GLCD.print(millis()/1000);
}Posted byon Thursday, 3 September 2015