Implementation of the Pomodoro technique on the ESP-32 microcontroller.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
435 B
Raw

#ifndef SEGMENT_DISPLAY_H
#define SEGMENT_DISPLAY_H
#include <Arduino.h>
#include "SegmentCharacter.h"
extern const int pinSDisplayShiftRegisterSER;
extern const int pinSDisplayShiftRegisterRCLK;
extern const int pinSDisplayShiftRegisterSRCLK;
extern const byte pinSDisplayDigit[];
extern byte sDisplayDigitValue[];
extern void setupSegmentDisplay();
extern void powerSegmentDisplay();
extern void setNumberToDisplay(int);
#endif