/* Test template for test programs. Make sure to include files that are used in the test program. Last updated 3.1.01. */ #include "RCX_String.h" #include "RCX_Control.h" #include "H8.h" #include "Time.h" #include "LCD.h" #include "Battery.h" #include "Buttons.h" void _start(void) { ButtonsInit(); while ( ! Running ){ lcd_show_int16(BatteryLevel()); BusyPauseMS(300); } while ( Running); RCX_Reset(); }