aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xmain.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/main.h b/main.h
index 5281c07..d65a1f4 100755
--- a/main.h
+++ b/main.h
@@ -47,9 +47,6 @@ extern unsigned int temperature_lsb;
extern int temperature_msb;
unsigned char temp_sign;
-// Declare variables for splitting decimal digit to character
-unsigned char temp_0;
-
// Define MSB / LSB
#define LSB(x) ((x % 10) + '0') // x >> 4
#define MSB(x) ((x / 10) + '0') // x & 0x0F