2024-10-04 10:27:46 +02:00
|
|
|
/*
|
2024-10-04 14:16:57 +02:00
|
|
|
* © 2024, Chris Harlow. All rights reserved.
|
2024-10-04 10:27:46 +02:00
|
|
|
*
|
|
|
|
* This file is part of DCC++EX API
|
|
|
|
*
|
|
|
|
* This is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* It is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with CommandStation. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef IO_TM1638_h
|
|
|
|
#define IO_TM1638_h
|
|
|
|
#include <Arduino.h>
|
|
|
|
#include "IODevice.h"
|
|
|
|
#include "DIAG.h"
|
|
|
|
#include "TM1638x.h"
|
2024-10-04 14:16:57 +02:00
|
|
|
|
2024-10-04 10:27:46 +02:00
|
|
|
class TM1638 : public IODevice {
|
|
|
|
private:
|
|
|
|
|
|
|
|
TM1638x * tm;
|
|
|
|
uint8_t _buttons;
|
|
|
|
uint8_t _leds;
|
|
|
|
unsigned long _lastLoop;
|
|
|
|
static const int LoopHz=20;
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Constructor
|
|
|
|
TM1638(VPIN firstVpin, byte clk_pin,byte dio_pin,byte stb_pin){
|
|
|
|
_firstVpin = firstVpin;
|
|
|
|
_nPins = 8;
|
|
|
|
tm=new TM1638x(clk_pin,dio_pin,stb_pin);
|
|
|
|
_buttons=0;
|
|
|
|
_leds=0;
|
|
|
|
_lastLoop=micros();
|
|
|
|
addDevice(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
static void create(VPIN firstVpin, byte clk_pin,byte dio_pin,byte stb_pin) {
|
|
|
|
if (checkNoOverlap(firstVpin,8))
|
|
|
|
new TM1638(firstVpin, clk_pin,dio_pin,stb_pin);
|
|
|
|
}
|
|
|
|
|
|
|
|
void _begin() override {
|
|
|
|
tm->reset();
|
|
|
|
tm->test();
|
|
|
|
_display();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void _loop(unsigned long currentMicros) override {
|
|
|
|
if (currentMicros - _lastLoop > (1000000UL/LoopHz)) {
|
|
|
|
_buttons=tm->getButtons();// Read the buttons
|
|
|
|
_lastLoop=currentMicros;
|
|
|
|
}
|
|
|
|
// DIAG(F("TM1638 buttons %x"),_buttons);
|
|
|
|
}
|
|
|
|
|
|
|
|
void _display() override {
|
|
|
|
DIAG(F("TM1638 Configured on Vpins:%u-%u"), _firstVpin, _firstVpin+_nPins-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// digital read gets button state
|
|
|
|
int _read(VPIN vpin) override {
|
|
|
|
byte pin=vpin - _firstVpin;
|
|
|
|
bool result=bitRead(_buttons,pin);
|
|
|
|
// DIAG(F("TM1638 read (%d) buttons %x = %d"),pin,_buttons,result);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
// digital write sets led state
|
|
|
|
void _write(VPIN vpin, int value) override {
|
2024-10-04 14:16:57 +02:00
|
|
|
// TODO.. skip if no state change
|
2024-10-04 10:27:46 +02:00
|
|
|
tm->writeLed(vpin - _firstVpin + 1,value!=0);
|
|
|
|
}
|
|
|
|
|
2024-10-04 14:16:57 +02:00
|
|
|
// Analog write sets digit displays
|
|
|
|
|
|
|
|
void _writeAnalogue(VPIN vpin, int lowBytes, uint8_t mode, uint16_t highBytes) override {
|
|
|
|
DIAG(F("TM1638 writeAnalogue(v=%d,l=%d,m=%d,h=%d"),vpin,lowBytes,mode,highBytes);
|
|
|
|
byte formatLength=mode & 0x0f;
|
|
|
|
byte formatType=mode>>4;
|
|
|
|
int8_t leftDigit=vpin-_firstVpin; // 0..7 from left
|
|
|
|
int8_t rightDigit=leftDigit+formatLength-1; // 0..7 from left
|
|
|
|
|
|
|
|
// loading is done right to left startDigit first
|
|
|
|
int8_t startDigit=7-rightDigit; // reverse as 7 on left
|
|
|
|
int8_t lastDigit=7-leftDigit; // reverse as 7 on left
|
|
|
|
auto value= ((uint32_t)highBytes<<16) | (uint32_t)lowBytes;
|
|
|
|
|
|
|
|
DIAG(F("TM1638 fl=%d ft=%x sd=%d ld=%d v=%l"),formatLength,formatType,
|
|
|
|
startDigit,lastDigit,value);
|
|
|
|
while(startDigit<=lastDigit) {
|
|
|
|
switch (formatType) {
|
|
|
|
case 0:// decimal (leading zeros)
|
|
|
|
tm->displayVal(startDigit,value%10);
|
|
|
|
value=value/10;
|
|
|
|
break;
|
|
|
|
case 1:// HEX (leading zeros)
|
|
|
|
tm->displayVal(startDigit,value & 0x0F);
|
|
|
|
value>>=4;
|
|
|
|
break;
|
|
|
|
case 2:// Raw 7-segment pattern
|
|
|
|
tm->displayDig(startDigit,value & 0xFF);
|
|
|
|
value>>=8;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
tm->displayDig(startDigit,0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
startDigit++;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2024-10-04 10:27:46 +02:00
|
|
|
};
|
|
|
|
#endif // IO_TM1638_h
|