Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsartin committed Sep 18, 2015
1 parent 5a90830 commit 672f8e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Dimmer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ void callZeroCross(){
}

void callTriac(){
// Process ISR for all configured dimmer lights at about 20KHz
// Process ISR for all configured dimmer lights at about 20KHz
for (uint8_t i = 0; i < dimmerCount; i++) {
dimmmers[i]->triac();
}
Expand Down
2 changes: 1 addition & 1 deletion src/Dimmer.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class Dimmer
* @param state initial state of the light. Possible states: ON or OFF. Default is OFF.
* @see begin()
*/
Dimmer(uint8_t triacPin, uint8_t mode = NORMAL_MODE, uint8_t resolution = 1, uint8_t value=50, bool state = OFF);
Dimmer(uint8_t triacPin, uint8_t mode = NORMAL_MODE, uint8_t resolution = 1, uint8_t value=50, bool state = ON);

/**
* Initializes the module.
Expand Down

0 comments on commit 672f8e1

Please sign in to comment.