Add files via upload

This commit is contained in:
hdrlux
2023-07-24 10:38:11 +02:00
committed by GitHub
parent b84ddd26be
commit db4934d1bc
16 changed files with 1048 additions and 0 deletions

20
Local_names.h Normal file
View File

@@ -0,0 +1,20 @@
/*
Local_names.h
MIT License
Copyright (c) 2023 hdrlux
Convert to short local weekday & month names
Workaround because DateStrings.cpp in TimeLib is english only
*/
#ifndef Local_names_H
#define Local_names_H
// Local short month
char* monthShortStrLoc(uint8_t month);
// Local short weekday
char* dayShortStrLoc(uint8_t day);
#endif // Local_names_H