For quite a long time, I had my Mom’s Nokia 2760 lying idle. So, when I thought of putting it into a good use, the LCDs caught my attention.Nokia 2760 caller ID screen is a 96x65 Monochrome LCD with a blue backlight. Here, I have written the driver code omitting graphic options like drawing line, chars, shapes etc. Just the pixel level access of the display is implemented in MSP430 microcontroller. A PC side program written in C++ is used to stream a 96x65 Monochrome bitmap image to the display through UART. STREAMING IMAGES FROM PC: Any monochrome image of size 96x65 can be streamed from PC through serial port to the msp430. The source image processing in host side is done using OpenCV library. The pixels are offset,concatenated and mapped to LCD’s byte. Then the bytes are transferred through COM port at Baudrate of 9600. The following diagram shows the architecture of host side application. MICROCONTROLLER : Since the MSP430 Launchpad supports a max
A Maker's Expedition..