only build sensor features if sensor is available
This commit is contained in:
@@ -28,6 +28,8 @@
|
||||
#include "thermistor_driver.h"
|
||||
#include "watch.h"
|
||||
|
||||
#ifdef HAS_TEMPERATURE_SENSOR
|
||||
|
||||
static void _temperature_display_face_update_display(bool in_fahrenheit) {
|
||||
thermistor_driver_enable();
|
||||
float temperature_c = thermistor_driver_get_temperature();
|
||||
@@ -94,3 +96,5 @@ bool temperature_display_face_loop(movement_event_t event, void *context) {
|
||||
void temperature_display_face_resign(void *context) {
|
||||
(void) context;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
@@ -22,8 +22,11 @@
|
||||
* SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifndef TEMPERATURE_DISPLAY_FACE_H_
|
||||
#define TEMPERATURE_DISPLAY_FACE_H_
|
||||
#pragma once
|
||||
|
||||
#include "pins.h"
|
||||
|
||||
#ifdef HAS_TEMPERATURE_SENSOR
|
||||
|
||||
/*
|
||||
* THERMISTOR READOUT (aka Temperature Display)
|
||||
@@ -63,4 +66,4 @@ void temperature_display_face_resign(void *context);
|
||||
NULL, \
|
||||
})
|
||||
|
||||
#endif // TEMPERATURE_DISPLAY_FACE_H_
|
||||
#endif // HAS_TEMPERATURE_SENSOR
|
||||
|
||||
@@ -28,6 +28,8 @@
|
||||
#include "thermistor_driver.h"
|
||||
#include "watch.h"
|
||||
|
||||
#ifdef HAS_TEMPERATURE_SENSOR
|
||||
|
||||
static void _temperature_logging_face_log_data(thermistor_logger_state_t *logger_state) {
|
||||
thermistor_driver_enable();
|
||||
watch_date_time_t date_time = watch_rtc_get_date_time();
|
||||
@@ -148,3 +150,5 @@ movement_watch_face_advisory_t temperature_logging_face_advise(void *context) {
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
@@ -22,8 +22,11 @@
|
||||
* SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifndef TEMPERATURE_LOGGING_FACE_H_
|
||||
#define TEMPERATURE_LOGGING_FACE_H_
|
||||
#pragma once
|
||||
|
||||
#include "pins.h"
|
||||
|
||||
#ifdef HAS_TEMPERATURE_SENSOR
|
||||
|
||||
/*
|
||||
* THERMISTOR LOGGING (aka Temperature Log)
|
||||
@@ -84,4 +87,4 @@ movement_watch_face_advisory_t temperature_logging_face_advise(void *context);
|
||||
temperature_logging_face_advise, \
|
||||
})
|
||||
|
||||
#endif // TEMPERATURE_LOGGING_FACE_H_
|
||||
#endif // HAS_TEMPERATURE_SENSOR
|
||||
|
||||
Reference in New Issue
Block a user