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.

28 lines
364 B

#ifndef _DISPLAY_HPP_
#define _DISPLAY_HPP_
#include <stdint.h>
class Display
{
public:
enum modes{
A,
B
};
Display();
void showTime(const uint8_t& minutes,
const uint8_t& secconds);
void showTime(const uint16_t& secconds);
void showMode(modes mode);
private:
};
#endif // _DISPLAY_HPP_