Skip to content

Commit

Permalink
fix a typo in the soil moisture table creation which caused data read
Browse files Browse the repository at this point in the history
failures on systems with soil moisture sensors
  • Loading branch information
darmbrust committed Jan 18, 2021
1 parent 5e380e3 commit 75c2645
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ public enum StoredDataTypes
temp_2("temp 2", "REAL", "most recent valid soil temp slot 2 (°F)", StoredDataTables.SOIL),
temp_3("temp 3", "REAL", "most recent valid soil temp slot 3 (°F)", StoredDataTables.SOIL),
temp_4("temp 4", "REAL", "most recent valid soil temp slot 4 (°F)", StoredDataTables.SOIL),
most_soil_1("soil moisture 1", "REAL", "most recent valid soil moisture slot 1 (cb)", StoredDataTables.SOIL),
most_soil_2("soil moisture 2", "REAL", "most recent valid soil moisture slot 2 (cb)", StoredDataTables.SOIL),
most_soil_3("soil moisture 3", "REAL", "most recent valid soil moisture slot 3 (cb)", StoredDataTables.SOIL),
most_soil_4("soil moisture 4", "REAL", "most recent valid soil moisture slot 4 (cb)", StoredDataTables.SOIL),
moist_soil_1("soil moisture 1", "REAL", "most recent valid soil moisture slot 1 (cb)", StoredDataTables.SOIL),
moist_soil_2("soil moisture 2", "REAL", "most recent valid soil moisture slot 2 (cb)", StoredDataTables.SOIL),
moist_soil_3("soil moisture 3", "REAL", "most recent valid soil moisture slot 3 (cb)", StoredDataTables.SOIL),
moist_soil_4("soil moisture 4", "REAL", "most recent valid soil moisture slot 4 (cb)", StoredDataTables.SOIL),
wet_leaf_1("leaf wetness 1", "TINYINT", "most recent valid leaf wetness slot 1", StoredDataTables.SOIL),
wet_leaf_2("leaf wetness 2", "TINYINT", "most recent valid leaf wetness slot 2", StoredDataTables.SOIL),

Expand Down

0 comments on commit 75c2645

Please sign in to comment.