11 lines
221 B
C++
11 lines
221 B
C++
#pragma once
|
|
/*
|
|
* A header file to store all the constants used in the project.
|
|
*/
|
|
#define LCD_I2C_ADDRESS 0x27
|
|
#define LCD_COLS 20
|
|
#define LCD_ROWS 4
|
|
|
|
#define ACTION_INTERVAL 60000 // 1 minute
|
|
#define MAXIMUM_STAT 100
|