More inputs and outputs added in simulator

* Set default value for battery sensor input
 * Show EEPROM values as unsigned.
 * Simulate K1 to K7 inputs (valve and trills++)
This commit is contained in:
Mikael Degerfält 2019-06-19 19:47:17 +02:00
parent 0871b2582d
commit 9357d4b827
4 changed files with 177 additions and 26 deletions

View file

@ -102,6 +102,11 @@ class Adafruit_MPR121 {
void setThresholds(uint8_t touch, uint8_t release);
uint8_t _registers[48];
// Simulator specific stuff
void mockFilteredData(int register, uint16_t value);
private:
int8_t _i2caddr;
};