Subversion Repositories HomeAutomation

Rev

Rev 1125 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 1125 Rev 1976
Line 62... Line 62...
62
void act_dimmer230_Init(void);
62
void act_dimmer230_Init(void);
63
void act_dimmer230_Process(void);
63
void act_dimmer230_Process(void);
64
void act_dimmer230_HandleMessage(StdCan_Msg_t *rxMsg);
64
void act_dimmer230_HandleMessage(StdCan_Msg_t *rxMsg);
65
void act_dimmer230_List(uint8_t ModuleSequenceNumber);
65
void act_dimmer230_List(uint8_t ModuleSequenceNumber);
66
 
66
 
67
#ifdef act_dimmer230_USEEEPROM
67
#ifndef act_dimmer230_USEEEPROM
-
 
68
#define act_dimmer230_USEEEPROM 0
-
 
69
#endif
-
 
70
 
-
 
71
#if act_dimmer230_USEEEPROM==1
68
    struct act_dimmer230_Data{
72
    struct act_dimmer230_Data{
69
        // the dimmer will store its current value in eeprom, to use when starting
73
        // the dimmer will store its current value in eeprom, to use when starting
70
        uint8_t eeDimmerValue;
74
        uint8_t eeDimmerValue;
71
    }; 
75
    }; 
72
 
76