Hello.
First i have to say that I'm new with Arduino. I tried my best to solve this problem but i can't see where is my mistake.
The Problem is :* the GLCD doesn't show any information that i uploaded in it.
*Every time a Upload a code i have to remove the Reset wire that i used in my setup.
*Also i noticed that when i move or touch the arduino gets disconnected sometimes. ( i switched its usb port, thinking it was making a conflict with wireless mouse)
I tried switching wires, downloading other libraries and testing codes, wiring up in a different way. with no results
i was checking this setup Arduino Playground - HomePage
http://www.szchlcd.com/upfiles/file/20120717093544657.pdf
i install the libraries for GLCD ( glcd, glcd_ks0108, ks0108) to test more codes
List of materials i used:
*Arduino UNO
*KS0108 128x64 Graphic LCD (CH12864A)(website: http://www.ebay.com/itm/1PCS-KS0108-128x64-Graphic-LCD-Blue-Backlight-for-EasyPIC5-HIGH-QUALITY/121103288848?_trksid=p2045573.m2042&_trkparms=aid%3D111000%26algo%3DREC.CURRENT%26ao%3D1%26asc%3D27%26meid%3D925547031549502756%26pid%3D100033%26prg%3D1011%26rk%3D1%26rkt%3D4%26sd%3D121103288848%26) (could this be a problem ? )
This is the code that i used the first time: its from "Arduino Workshop A Hands-On Introduction with 65 Projects" page 155-156
#include <glcd.h> // include the graphics LCD library
#include "fonts/SystemFont5x7.h" // include the standard character fonts for it
int j = 7;
void setup()
{
GLCD.Init(NON_INVERTED);
GLCD.ClearScreen();
GLCD.SelectFont(System5x7);
}
void loop()
{
GLCD.ClearScreen();
GLCD.CursorTo(1, 1);
GLCD.Puts("Hello, world.");
GLCD.CursorTo(1, 2);
GLCD.Puts("I hope you are ");
GLCD.CursorTo(1, 3);
GLCD.Puts("enjoying this");
GLCD.CursorTo(1, 4);
GLCD.Puts("book. ");
GLCD.CursorTo(1, 5);
GLCD.Puts("This is from ");
GLCD.CursorTo(1, 6);
GLCD.Puts("chapter ");
GLCD.PrintNumber(j);
GLCD.Puts(".");
do {} while (1);
}
my wiring and pictures are attached.
Thanks everyone