Troubleshooting

Committer:
BenRJG
Date:
Thu Nov 08 00:37:25 2018 +0000
Revision:
11:c561293919d9
Child:
12:edf31d0a61f0
Created Display Class, Moved display template into class

Who changed what in which revision?

UserRevisionLine numberNew contents of line
BenRJG 11:c561293919d9 1 #include "Display.hpp"
BenRJG 11:c561293919d9 2 #include "DataTypes.hpp"
BenRJG 11:c561293919d9 3
BenRJG 11:c561293919d9 4 void Display::INIT()
BenRJG 11:c561293919d9 5 {
BenRJG 11:c561293919d9 6 lcd.INIT();
BenRJG 11:c561293919d9 7 lcd.display("T: +00",LINE1); //LINE + position on line
BenRJG 11:c561293919d9 8 lcd.putt(223);
BenRJG 11:c561293919d9 9 lcd.display("C L: 0000",LINE1+7);
BenRJG 11:c561293919d9 10 lcd.display("P: 0000 mbar",LINE2+2);
BenRJG 11:c561293919d9 11 }
BenRJG 11:c561293919d9 12
BenRJG 11:c561293919d9 13 void Display::clear()
BenRJG 11:c561293919d9 14 {
BenRJG 11:c561293919d9 15
BenRJG 11:c561293919d9 16 }