Can anyone identify this no name timer and say if the screen can be used with a Mega or Uno?
Post the dimensions of the screen. If you do not mind destroying it, the IC under the black blob is the driver, and maybe has an identifying number on it to search for a datasheet.
Almost certainly not. LCD screens require a driver (the screens are AC driven, not DC), and you won't be able to reuse the driver under the black blob.
Doesn't really matter, just an anti trash idea, thanks.
To drive a LCd you usually need a driver chip (e.g. HT1621). This seems to be embedded under the back blob.
In this case I would have some fun figuring out how fast a LCD gets damaged while trying to drive it directly from an Arduino.
I would connect every pin of the LCD to the Arduino like this:
Deselected pins would have pinMode(x, INPUT)
In the first cycle selected pins would be like
Column: pinMode(x, OUTPUT); digitalWrite(x, LOW)
Row: pinMode(x, OUTPUT); digitalWrite(x, HIGH)
in the second cycle:
Column: pinMode(x, OUTPUT); digitalWrite(x, HIGH)
Row: pinMode(x, OUTPUT); digitalWrite(x, LOW)
Suggest you concentrate your efforts in something tried and true.
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.