-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.h
More file actions
46 lines (32 loc) · 933 Bytes
/
variables.h
File metadata and controls
46 lines (32 loc) · 933 Bytes
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
#ifndef _MYVARS_H_
#define _MYVARS_H_
#include <Arduino.h>
#define SW_VERSION "0.34.1"
#define HAVE_CAMERA
#define ESP_CAM_HOSTNAME "mozz-cam"
#define CAM_SERIAL "2"
#define FLASH_ENABLED false
#define HAVE_SDCARD
#define TIME_LAPSE_MODE false
#define HIDE_ROOT_DIR false
#undef HAVE_BME280
#define SEALEVELPRESSURE_HPA (1013.25)
#undef PRUSA_CONNECT
#define PRUSA_CONNECT_INTERVAL 72
#define PRUSA_PRINTER_IP "192.168.1.72" // your printer IP address
extern String cameraNameSuffix;
extern String photoFrame;
extern bool timeLapse;
extern u_int16_t timeLapseInterval;
extern bool prusaConnectActive;
extern u_int16_t prusaConnectInterval;
extern bool prusaPrinterOnline;
extern String prusaHTMLResponse;
extern long timeZone;
extern byte daySaveTime;
extern char elapsedTimeString[40];
extern char currentDateTime[17];
extern void bmeSerialPrint( void );
extern void initBME( void );
extern bool bme280Found;
#endif