27 lines
411 B
C++
27 lines
411 B
C++
#ifndef 7segNums_h
|
|
#define 7segNums_h
|
|
|
|
#include "Ardunio.h"
|
|
|
|
class SegDisp
|
|
{
|
|
public:
|
|
SegDisp(int pins[8]);
|
|
void zero(int state);
|
|
void one(int state);
|
|
void two(int state);
|
|
void three(int state);
|
|
void four(int state);
|
|
void five(int state);
|
|
void six(int state);
|
|
void seven(int state);
|
|
void eight(int state);
|
|
void nine(int state);
|
|
void dot(int state);
|
|
|
|
private:
|
|
int _pins[8];
|
|
};
|
|
|
|
#endif
|