LCD Image Viewer
http://blog.zakkemble.co.uk/lcd-image-viewer/

The .hex file in ./firmware/ is compiled for ATmega328P, which can be uploaded stright to an Arduino Uno.

The host software is written in C# .NET, so it's only for Windows, if you get an error when starting it
then you probably need to update your .NET Framework, which can be downloaded from
http://www.microsoft.com/en-gb/download/details.aspx?id=17718

The TFT18 Arduino library in ./arduino/libraries is not mine, I can't find an offical source for it,
but it seems to be a mishmash of Limor Fried/Ladyada's graphics library (BSD license) and LCD code by Rossum (MIT license).
I did a minor edit to ST7735.h so it compiles with newer Arduino versions.

Third party contents are copyrighted by their respective authors.
My productions are published under GNU GPL v3 (see License.txt).

--------

Wiring -

LCD pin | Arduino Uno pin
-------------------------
VCC	| 5V
BKL	| GND
RESET**	| RESET
RS	| 9
MISO*	| 12
MOSI	| 11
SCLK	| 13
LCD CS	| 10
SD_CS*	| 4
GND	| GND

* These are only needed if you're using the SD slot on the back of the LCD
** Connect RESET to make the LCD reset along with the controller, if you don't need that then
leave disconnected or connected to 5V

--------

TODO:
Host program - Fix image editing wonkyness after rotating

--------

Zak Kemble
me@zakkemble.co.uk