-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain_menu.h
More file actions
56 lines (37 loc) · 1.03 KB
/
Copy pathmain_menu.h
File metadata and controls
56 lines (37 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#ifndef MAIN_MENU_HPP
#define MAIN_MENU_HPP
#include <Wire.h>
//LiquidCrystal_I2C lcd(0x3f,16,2); // 0x3f address of display // columns // rows
class Main_menu{
private:
//Time_modul time_modul;
//bmp_modul bmp_m;
//Srf_modul *srf_module;
public:
virtual void loops() = 0;
//time_init();
//delay(2000);
//dht_init();
//delay(2000);
//bmp_m.bmp_init();
//delay(2000);
//srf_module->srf_modul_init();
virtual void settings() = 0;
//time_settings();
//delay(2000);
//dht_settings();
//delay(2000);
//bmp_m.bmp_settings();
//delay(2000);
// srf_module->srf_modul_settings();
//bmp_m.bmp_settings();
//dht_settings();
Main_menu() /*: srf_module( new Srf_modul)*/{
//time_modul->lcd_setter(lcd);
//this-> time_modul;;
}
// void lcd_setter(LiquidCrystal_I2C *lcd){
// this->lcd = lcd;
// }
};
#endif