#ifndef PERM_ARGS
#define PERM_ARGS

class PermArgs
   {
   //
   // Perminent Parameters will be saved in the EEPROM
   //
 public:
   long  t1;   // Showtime
   long  t2;   // Smoke time
   long  t3;   // Rest time
   int   floodFlashSpeed;
   int   floodFlashDwell;
   int   shockFlashSpeed;
   int   shockFlashDwell;
   
   //
   // Constructor - Reads args into memory
   //
   PermArgs();
   
   // update - Saved just the changed bytes to the EEPROM
   void update();
   };
   
#endif
