Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed mbed-rtos MLX90614
Header.h
00001 #ifndef _HEADER_H_ 00002 #define _HEADER_H_ 00003 00004 #include <stdio.h> 00005 #include <stdlib.h> 00006 #include "st7565LCD.h" 00007 00008 #define LEFT_MARGIN 5 00009 00010 using namespace std; 00011 00012 class Header{ 00013 public: 00014 //functions 00015 //void setBatteryLevel(float d); 00016 void display(void); 00017 void setTitle(char *t); 00018 Header(char * t, ST7565 * lcd); 00019 00020 private: 00021 //variables 00022 //uint8_t battery_level; 00023 char * title; 00024 ST7565 * st7565; 00025 }; 00026 00027 #endif
Generated on Thu Jul 14 2022 11:25:13 by
1.7.2