From 4d3e462531d2172cb13319c7f79c0e2228e652fa Mon Sep 17 00:00:00 2001 From: Sam Light Date: Wed, 10 Sep 2025 19:37:28 +0100 Subject: Big update --- src/text.h | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'src/text.h') diff --git a/src/text.h b/src/text.h index ff6ead7..22ab889 100644 --- a/src/text.h +++ b/src/text.h @@ -6,18 +6,10 @@ #define TEXT_SIZE 512 -struct text { - time_t last_update; - char value[TEXT_SIZE]; - - struct battery * battery; - struct pulse * pulse; - struct time * time; -}; - struct text * text_new(); void text_free(struct text *); void text_update(struct text *); +const char * text_get_val(struct text *); #endif -- cgit v1.2.3