mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
114 lines
2.6 KiB
C++
114 lines
2.6 KiB
C++
#pragma once
|
|
//
|
|
// FILE: TM1637.h
|
|
// AUTHOR: Rob Tillaart
|
|
// DATE: 2019-10-28
|
|
// VERSION: 0.3.8
|
|
// PUPROSE: TM1637 library for Arduino
|
|
// URL: https://github.com/RobTillaart/TM1637_RT
|
|
|
|
|
|
// tested on 6 digit display
|
|
// tested on 4 digit (clock) display esp. displayTime()
|
|
|
|
|
|
#include "Arduino.h"
|
|
|
|
#define TM1637_LIB_VERSION (F("0.3.8"))
|
|
|
|
|
|
class TM1637
|
|
{
|
|
public:
|
|
TM1637();
|
|
|
|
// replaces init()
|
|
void begin(uint8_t clockPin, uint8_t dataPin, uint8_t digits = 6);
|
|
|
|
|
|
// DISPLAY FUNCTIONS
|
|
void displayPChar( char * buff );
|
|
void displayRaw(uint8_t * data, uint8_t pointPos);
|
|
void displayInt(long value);
|
|
void displayFloat(float value);
|
|
void displayFloat(float value, uint8_t fixedPoint);
|
|
void displayHex(uint32_t value);
|
|
|
|
|
|
// next 3 only tested on 4 digit display with colon
|
|
void displayTime(uint8_t hh, uint8_t mm, bool colon);
|
|
void displayTwoInt(int ll, int rr, bool colon = true);
|
|
// Celsius -9..99°C
|
|
void displayCelsius(int temp, bool colon = false);
|
|
// Fahrenheit -9..99°F
|
|
void displayFahrenheit(int temp, bool colon = false);
|
|
|
|
|
|
// DISPLAY FUNCTIONS META
|
|
void displayClear();
|
|
void displayRefresh();
|
|
// EXPERIMENTAL 0.3.8
|
|
void hideSegment(uint8_t idx);
|
|
void hideMultiSegment(uint8_t mask); // 0 bit = show 1 bit = hide
|
|
|
|
|
|
// BRIGHTNESS
|
|
// brightness = 0..7
|
|
void setBrightness(uint8_t brightness = 3); // default 3
|
|
uint8_t getBrightness();
|
|
|
|
|
|
// BIT DELAY
|
|
// tune the timing of writing bytes.
|
|
void setBitDelay(uint8_t bitDelay = 10);
|
|
uint8_t getBitDelay();
|
|
|
|
|
|
// KEY SCAN
|
|
uint8_t keyscan(void);
|
|
|
|
|
|
// CONFIGURATION
|
|
// the order the individual digits must be sent to the display.
|
|
// optionally to be called after begin()
|
|
void setDigitOrder(uint8_t a = 0, uint8_t b = 1,
|
|
uint8_t c = 2, uint8_t d = 3,
|
|
uint8_t e = 4, uint8_t f = 5,
|
|
uint8_t g = 6, uint8_t h = 7);
|
|
|
|
|
|
// OBSOLETE
|
|
// init will be replaced by begin() in the future (0.4.0)
|
|
void init(uint8_t clockPin, uint8_t dataPin, uint8_t digits = 6);
|
|
|
|
// DEBUG only
|
|
void dumpCache();
|
|
|
|
|
|
private:
|
|
uint8_t _clockPin = -1;
|
|
uint8_t _dataPin = -1;
|
|
uint8_t _digits = 6;
|
|
uint8_t _brightness = 3;
|
|
uint8_t _bitDelay = 10;
|
|
|
|
uint8_t _digitOrder[8];
|
|
|
|
uint8_t _data[8];
|
|
uint8_t _lastPointPos;
|
|
|
|
uint8_t writeByte(uint8_t data);
|
|
void start();
|
|
void stop();
|
|
|
|
void writeSync(uint8_t pin, uint8_t val);
|
|
void nanoDelay(uint16_t n);
|
|
|
|
// Override in your own derived class for custom character translation
|
|
virtual uint8_t asciiTo7Segment ( char c ) ;
|
|
};
|
|
|
|
|
|
// -- END OF FILE --
|
|
|