forked from DeanIsMe/SevSeg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SevSeg.h
95 lines (83 loc) · 3.19 KB
/
SevSeg.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/* SevSeg Library
*
* Copyright 2017 Dean Reading
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*
* This library allows an Arduino to easily display numbers and letters on a
* 7-segment display without a separate 7-segment display controller.
*
* Direct any questions or suggestions to deanreading@hotmail.com
* See the included readme for instructions.
* https://github.com/DeanIsMe/SevSeg
*/
#ifndef MAXNUMDIGITS
#define MAXNUMDIGITS 8 // Can be increased, but the max number is 2^31
#endif
#ifndef SevSeg_h
#define SevSeg_h
#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif
// Use defines to link the hardware configurations to the correct numbers
#define COMMON_CATHODE 0
#define COMMON_ANODE 1
#define N_TRANSISTORS 2
#define P_TRANSISTORS 3
#define NP_COMMON_CATHODE 1
#define NP_COMMON_ANODE 0
class SevSeg
{
public:
SevSeg();
void refreshDisplay();
void begin(byte hardwareConfig, byte numDigitsIn, byte digitPinsIn[],
byte segmentPinsIn[], bool resOnSegmentsIn=0,
bool updateWithDelaysIn=0, bool leadingZerosIn=0,
bool disableDecPoint=0);
void setBrightness(int brightnessIn); // A number from 0..100
void setNumber(long numToShow, char decPlaces=-1, bool hex=0);
void setNumber(unsigned long numToShow, char decPlaces=-1, bool hex=0);
void setNumber(int numToShow, char decPlaces=-1, bool hex=0);
void setNumber(unsigned int numToShow, char decPlaces=-1, bool hex=0);
void setNumber(char numToShow, char decPlaces=-1, bool hex=0);
void setNumber(byte numToShow, char decPlaces=-1, bool hex=0);
void setNumber(float numToShow, char decPlaces=-1, bool hex=0);
void setSegments(byte segs[]);
void setChars(char str[]);
void blank(void);
private:
void setNewNum(long numToShow, char decPlaces, bool hex=0);
void findDigits(long numToShow, char decPlaces, bool hex, byte digits[]);
void setDigitCodes(byte nums[], char decPlaces);
void segmentOn(byte segmentNum);
void segmentOff(byte segmentNum);
void digitOn(byte digitNum);
void digitOff(byte digitNum);
byte digitOnVal,digitOffVal,segmentOnVal,segmentOffVal;
bool resOnSegments, updateWithDelays, leadingZeros;
byte digitPins[MAXNUMDIGITS];
byte segmentPins[8];
byte numDigits;
byte numSegments;
byte prevUpdateIdx; // The previously updated segment or digit
byte digitCodes[MAXNUMDIGITS]; // The active setting of each segment of each digit
unsigned long prevUpdateTime; // The time (millis()) when the display was last updated
int ledOnTime; // The time (us) to wait with LEDs on
int waitOffTime; // The time (us) to wait with LEDs off
bool waitOffActive; // Whether the program is waiting with LEDs off
};
#endif //SevSeg_h
/// END ///