Skip to content

Commit

Permalink
unsigned int
Browse files Browse the repository at this point in the history
  • Loading branch information
przemyslawzygmunt committed Feb 7, 2018
1 parent f391e13 commit d4579e7
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -27,12 +27,12 @@ void supla_rs_LoadPosition(int channelNumber, int *position) {
// Load roller shutter position from flash memory
}

void supla_rs_SaveSettings(int channelNumber, int full_opening_time, int full_closing_time) {
void supla_rs_SaveSettings(int channelNumber, unsigned int full_opening_time, unsigned int full_closing_time) {
// Save roller shutter settings on flash memory.
// *Arduino EEPROM is not recommended because of write cycle limits.
}

void supla_rs_LoadSettings(int channelNumber, int *full_opening_time, int *full_closing_time) {
void supla_rs_LoadSettings(int channelNumber, unsigned int *full_opening_time, unsigned int *full_closing_time) {
// Load roller shutter settings from flash memory
}

Expand Down

0 comments on commit d4579e7

Please sign in to comment.