Skip to content

Commit

Permalink
gropointModel = GPLPX vs UNKNOWN
Browse files Browse the repository at this point in the history
Replace UNKNOWN w/ GPLPX
for `gropointModel`, because it conflicted with YosemiTechModbus `UNKNOWN`
  • Loading branch information
aufdenkampe committed May 31, 2023
1 parent 64b5730 commit 4e28000
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sensors/GroPointParent.h
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class GroPointParent : public Sensor {
GroPointParent(byte modbusAddress, Stream* stream, int8_t powerPin,
int8_t powerPin2, int8_t enablePin = -1,
uint8_t measurementsToAverage = 1,
gropointModel model = UNKNOWN,
gropointModel model = GPLPX,
const char* sensName = "GroPoint-Sensor",
uint8_t numVariables = 2,
uint32_t warmUpTime_ms = 350,
Expand All @@ -139,7 +139,7 @@ class GroPointParent : public Sensor {
GroPointParent(byte modbusAddress, Stream& stream, int8_t powerPin,
int8_t powerPin2, int8_t enablePin = -1,
uint8_t measurementsToAverage = 1,
gropointModel model = UNKNOWN,
gropointModel model = GPLPX,
const char* sensName = "GroPoint-Sensor",
uint8_t numVariables = 2,
uint32_t warmUpTime_ms = 350,
Expand Down

2 comments on commit 4e28000

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All sensor and variable subclasses must be included in the Menu a la Carte example
missing_menu_docs

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All sensor and variable subclasses must be included in the Menu a la Carte example
missing_menu_docs

Please sign in to comment.