-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig_params_temp.h
More file actions
48 lines (40 loc) · 1.42 KB
/
config_params_temp.h
File metadata and controls
48 lines (40 loc) · 1.42 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
/*
NAME:
Labels of parameters for temperature measurement
VERSION: 1.6.0
DESCRIPTION:
Parameters for temperature measurement regardless of utilized temperature
sensors.
The labels are stored in program flash memory in order to save
SRAM of a microcontroller.
*/
#ifndef CONFIG_PARAMS_TEMP_H
#define CONFIG_PARAMS_TEMP_H
#if defined(__AVR__)
#include <Arduino.h>
#include <avr/pgmspace.h>
#include <inttypes.h>
#elif defined(ESP8266)
#include <Arduino.h>
#include <pgmspace.h>
#elif defined(ESP32)
#include <Arduino.h>
#include <pgmspace.h>
#elif defined(PARTICLE)
#include <Particle.h>
#endif
static const char lblPeriodTemp[] PROGMEM = "periodTemp";
static const char lblTempResBit[] PROGMEM = "tempResBit";
static const char lblTempResDeg[] PROGMEM = "tempResDeg";
static const char lblTempSmooth[] PROGMEM = "tempSmooth";
static const char lblTempSensors[] PROGMEM = "tempSensorCnt";
static const char lblTempIds[] PROGMEM = "tempSensorIds";
static const char lblTemp[] PROGMEM = "temperature";
static const char lblTempAvg[] PROGMEM = "tempAvg";
static const char lblTempMax[] PROGMEM = "tempMax";
static const char lblTempMin[] PROGMEM = "tempMin";
static const char lblTempMaxTime[] PROGMEM = "tempMaxTime";
static const char lblTempMinTime[] PROGMEM = "tempMinTime";
static const char lblErrorThermo[] PROGMEM = "errorThermo";
static const char lblErrorThermoBlock[] PROGMEM = "errorThermoBlock";
#endif