Skip to content

Commit

Permalink
Fix bugs introduced by refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-englmaier committed Feb 6, 2024
1 parent 808822e commit c6041aa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/focuser/alluna_tcs2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ bool AllunaTCS2::ISNewNumber(const char *dev, const char *name, double values[],
if (dev != nullptr && strcmp(dev, getDeviceName()) == 0)
{
// Fan Power
if (!FanPowerNP.isNameMatch(name))
if (FanPowerNP.isNameMatch(name))
{
// Try to update settings
int power=values[0];
Expand Down
1 change: 0 additions & 1 deletion drivers/focuser/alluna_tcs2.h
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,6 @@ class AllunaTCS2 : public INDI::Focuser //, public INDI::DustCapInterface
/// Class Variables
/////////////////////////////////////////////////////////////////////////////
int32_t m_TargetDiff { 0 };
uint16_t m_TemperatureCounter { 0 };

/////////////////////////////////////////////////////////////////////////////
/// Static Helper Values
Expand Down

0 comments on commit c6041aa

Please sign in to comment.