Teensy LCD Display for MSI Afterburner 3.0
I recently wanted to display the MSI Afterburner statistics to an Arduino based device, specifically a Teensy 2.0++. I came up with the idea that I'd piggyback off the MSI Afterburner Remote Sever windows application which is nothing more than a web server. Long story short, after a few nights of soldering and coding I managed to create this. Because my graphics cards are already quite powerful (2 x GTX 680 2GBs) I decided not to make an overclock button that would trigger a profile set in MSI Afterburner. For now it's just a simple statistics monitor. The case is made from the packaging that came with my wife's iPod Nano. The stand is actually a cheap soldering iron stand and the LCD display is a positive white on red backlight 16x2 character display. For the teensy I just simply used the Arduino sketch example for LiquidCrystalFast->SerialLCD which just runs a loop and continuously waits for any serial messages and when it receives one displays it to the LCD. In ...