1
0
forked from me/IronOS

Hall Effect Sensitivities

This commit is contained in:
Ben V. Brown
2020-11-01 10:45:08 +11:00
parent e612c4751f
commit b1abe391dc
2 changed files with 20 additions and 3 deletions

View File

@@ -54,8 +54,7 @@ typedef struct {
uint8_t ReverseButtonTempChangeEnabled; // Change the plus and minus button assigment
uint16_t TempChangeLongStep; // Change the plus and minus button assigment
uint16_t TempChangeShortStep; // Change the plus and minus button assigment
uint8_t hallEffectMode; //Operating mode of the hall effect sensor
int16_t hallEffectThreshold; //Threshold of the halleffect sensor
uint8_t hallEffectSensitivity; //Operating mode of the hall effect sensor
uint32_t padding; // This is here for in case we are not an even divisor so
// that nothing gets cut off
//MUST BE LAST
@@ -67,6 +66,7 @@ extern volatile systemSettingsType systemSettings;
void saveSettings();
bool restoreSettings();
uint8_t lookupVoltageLevel(uint8_t level);
uint16_t lookupHallEffectThreshold();
void resetSettings();
#endif /* SETTINGS_H_ */