Microcontroller LCD Initialization (2012)
web.alfredstate.edu
Microcontroller LCD Initialization (2012)
1–10 of 18 posts
Re: Microcontroller LCD Initialization (2012)
#2Re: Microcontroller LCD Initialization (2012)
#3Re: Microcontroller LCD Initialization (2012)
#4It's amazing that this weird architecture has endured for so many years. These displays continue to be cheap and handy.
https://en.wikipedia.org/wiki/Thin-film-transistor_liquid-cr...
a neat thing about these LCDs is that there is a display buffer that holds the alphanumeric, but no need for the buffer to write to the display. the buffer can be written to and read from as if its memory [bcz it is!]
Re: Microcontroller LCD Initialization (2012)
#5Re: Microcontroller LCD Initialization (2012)
#6It's amazing that this weird architecture has endured for so many years. These displays continue to be cheap and handy.
yes they are dinosaurs of a superior breed, TFT displays are something else too. https://en.wikipedia.org/wiki/Thin-film-transistor_liquid-cr... a neat thing about these LCDs is that there is a display buffer that holds the alphanumeric, but no need for the buffer to write to the display. the buffer can be written to and read from as if its memory [bcz it is!]
Try it - they're what, $5 each?
Also, what's a good alternative to imgur besides S3 et al? It's getting annoying.
Re: Microcontroller LCD Initialization (2012)
#7It's amazing that this weird architecture has endured for so many years. These displays continue to be cheap and handy.
I mean, you don't have to care about the architecture at all. You just throw some simple bits and characters at the screen and it displays that for you. I think the simplicity of that got these displays to the point where they are now
Re: Microcontroller LCD Initialization (2012)
#8It's amazing that this weird architecture has endured for so many years. These displays continue to be cheap and handy.
The cool thing about these things is that most of them are 99% similar, which has helped with endurance more than anything else. It's a weird architecture, yes, but you can often replace a thirty year-old LCD with a brand new one and it'll work, often without any firmware adjustment. That is hard to beat (and, besides, there's hardly any reason to beat it).
Re: Microcontroller LCD Initialization (2012)
#9in other words power must turn on and ramp time to operating level must be somewhere between 100 micro seconds and 10 milliseconds. this is accomplished easily with power conditioning between hardware and supply voltage. My first digital project is still operating in niagara falls ontario up on the wall in 2 of the more popular museums. the record fastest drumbeat in the world was held by "some guy" and was around 12…
This sounded slow to me, turns out it is
Some guy doing 20 beats per second https://www.telegraph.co.uk/news/newsvideo/weirdnewsvideo/10...
Edit: Quoted wrong
Re: Microcontroller LCD Initialization (2012)
#10The positive bit is once you've hidden all the oddness behind an API (mine is lcd_init(), lcd_cls(), lcd_pos(x,y), lcd_write(str) ) then they're totally fungible.