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.

55 lines
1.1 KiB
Raw

#ifndef SEGMENT_CHARACTER_H
#define SEGMENT_CHARACTER_H
#include <Arduino.h>
const byte SC_A=0xCF;
const byte SC_B=0xDA;
const byte SC_C=0x1B;
const byte SC_D=0xDC;
const byte SC_E=0x9B;
const byte SC_F=0x8B;
const byte SC_G=0x5B;
const byte SC_H=0xCE;
const byte SC_I=0x0A;
const byte SC_J=0x5C;
const byte SC_K=0x00;
const byte SC_L=0x1A;
const byte SC_M=0x4F;
const byte SC_N=0xC8;
const byte SC_O=0x5F;
const byte SC_o=0xD8;
const byte SC_P=0x8F;
const byte SC_Q=0xC7;
const byte SC_R=0x88;
const byte SC_S=0xD3;
const byte SC_T=0x9A;
const byte SC_U=0x5E;
const byte SC_V=0x58;
const byte SC_W=0x16;
const byte SC_X=0x00;
const byte SC_Y=0xD6;
const byte SC_Z=0x00;
const byte SC_0=0x5F;
const byte SC_1=0x44;
const byte SC_2=0x9D;
const byte SC_3=0xD5;
const byte SC_4=0xC6;
const byte SC_5=0xD3;
const byte SC_6=0xDA;
const byte SC_7=0x45;
const byte SC_8=0xDF;
const byte SC_9=0xD7;
const byte SC_NUMBER[]={
SC_0,SC_1,SC_2,SC_3,SC_4,SC_5,SC_6,SC_7,SC_8,SC_9
};
const byte SC_BLANK=0x00;
const byte SC_DOT=0x20;
const byte SC_EQUAL=0x90;
const byte SC_MINUS=0x80;
const byte SC_UNDERSCORE=0x10;
#endif