GY-63_MS5611/libraries/rotaryDecoderSwitch/rotaryDecoderSwitch.cpp
2024-02-23 09:47:51 +01:00

213 lines
3.7 KiB
C++

//
// FILE: rotaryDecoderSwitch.cpp
// AUTHOR: Rob Tillaart
// VERSION: 0.3.0
// DATE: 2021-05-17
// PURPOSE: Arduino library for rotary decoder (with switch)
// URL: https://github.com/RobTillaart/rotaryDecoderSwitch
#include "rotaryDecoderSwitch.h"
/////////////////////////////////////////////////////
//
// CONSTRUCTORS
//
rotaryDecoderSwitch::rotaryDecoderSwitch(const int8_t address, TwoWire *wire)
{
_address = address;
_wire = wire;
}
bool rotaryDecoderSwitch::begin(uint8_t count)
{
_count = count;
if (_count > 2) _count = 2;
if (! isConnected()) return false;
return true;
}
bool rotaryDecoderSwitch::isConnected()
{
_wire->beginTransmission(_address);
return ( _wire->endTransmission() == 0);
}
void rotaryDecoderSwitch::readInitialState()
{
uint8_t value = read8();
_lastValue = value;
// pin 0,1 and 4,5
for (uint8_t i = 0; i < _count; i++)
{
_lastPos[i] = value & 0x03;
value >>= 4;
}
}
bool rotaryDecoderSwitch::checkChange()
{
uint8_t value = read8();
return (_lastValue != value);
}
bool rotaryDecoderSwitch::update()
{
uint8_t value = read8();
if (_lastValue == value)
{
return false;
}
_lastValue = value;
for (uint8_t i = 0; i < _count; i++, value >>= 4)
{
uint8_t currentpos = (value & 0x03);
uint8_t change = (_lastPos[i] << 2) | currentpos;
switch (change)
{
case 0b0001: // fall through..
case 0b0111:
case 0b1110:
case 0b1000:
_encoder[i]++;
break;
case 0b0010:
case 0b0100:
case 0b1101:
case 0b1011:
_encoder[i]--;
break;
}
_lastPos[i] = currentpos;
}
return true;
}
bool rotaryDecoderSwitch::updateSingle()
{
uint8_t value = read8();
if (_lastValue == value)
{
return false;
}
_lastValue = value;
for (uint8_t i = 0; i < _count; i++, value >>= 4)
{
uint8_t currentpos = (value & 0x03);
uint8_t change = (_lastPos[i] << 2) | currentpos;
switch (change)
{
case 0b0001: // fall through..
case 0b0111:
case 0b1110:
case 0b1000:
_encoder[i] += 1;
break;
case 0b0011:
case 0b0110:
case 0b1001:
case 0b1100:
_encoder[i] += 2;
break;
case 0b0010:
case 0b0100:
case 0b1101:
case 0b1011:
_encoder[i] += 3;
break;
}
_lastPos[i] = currentpos;
}
return true;
}
int32_t rotaryDecoderSwitch::getValue(uint8_t re)
{
return _encoder[re];
}
void rotaryDecoderSwitch::setValue(uint8_t re, int32_t value)
{
_encoder[re] = value;
}
bool rotaryDecoderSwitch::isKeyPressed(uint8_t re)
{
uint8_t mask = 0x04;
if (re > 0) mask = 0x40;
return (_lastValue & mask) == 0;
}
/////////////////////////////////////////////////////
//
// READ - WRITE interface
//
uint8_t rotaryDecoderSwitch::read1(uint8_t pin)
{
uint8_t mask = 1 << pin;
uint8_t tmp = read8();
return (tmp & mask) > 0 ? HIGH : LOW;
}
bool rotaryDecoderSwitch::write1(uint8_t pin, uint8_t value)
{
uint8_t mask = 1 << pin;
uint8_t tmp = read8();
if (value == LOW) tmp &= ~mask;
else tmp |= mask;
return write8(tmp);
}
uint8_t rotaryDecoderSwitch::read8()
{
_wire->requestFrom(_address, (uint8_t)1);
uint8_t x = _wire->read();
// Serial.println(x, HEX);
return x;
}
bool rotaryDecoderSwitch::write8(uint8_t value)
{
_wire->beginTransmission(_address);
_wire->write(value);
return (_wire->endTransmission() == 0);
}
/////////////////////////////////////////////////////
//
// DEBUG
//
uint8_t rotaryDecoderSwitch::getLastPosition(uint8_t re)
{
return _lastPos[re];
}
/////////////////////////////////////////////////////
//
// PROTECTED
//
// -- END OF FILE --