Skip to content

Commit

Permalink
fix dlc version error
Browse files Browse the repository at this point in the history
  • Loading branch information
iwannabswiss committed Sep 8, 2024
1 parent 6d2fe0e commit 1c70ad3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/auxiliary/darklight_covercalibrator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ std::mutex serialMutex;
DarkLight_CoverCalibrator::DarkLight_CoverCalibrator() : lightDisabled(false), coverIsMoving(false), lightIsReady(true),
autoOn(false)
{
setVersion(CDRIVER_VERSION_MAJOR, CDRIVER_VERSION_MINOR);
setVersion(0, 1);
}

const char *DarkLight_CoverCalibrator::getDefaultName()
Expand Down Expand Up @@ -1089,4 +1089,4 @@ void DarkLight_CoverCalibrator::setBrightness(double BrightnessValue)
LOGF_DEBUG("SetBrightness response: %s", response);
lightIsReady = false;
}
}//end of setBrightness
}//end of setBrightness

0 comments on commit 1c70ad3

Please sign in to comment.