/****************************************************************** * arduino_module.cpp | Arduino Duemilanove w/ ATmega328 ****************************************************************** * Author: Jonathan A. Feucht * Date created: 29 May 2010 */ #include #include #include #include "common.h" #include "i2c_driver.h" #include "lcd_driver.h" #include "eeprom_driver.h" void setup() { load_eeprom(); setup_lcd(); setup_i2c(); // Load the main menu update_display(); return; } void loop() { // Poll key positions poll_keys(); // Run menu driver menu_driver(); return; }