Fix implicit cast and non-const char pointer warnings

This commit is contained in:
Thomas Barnekov
2022-10-05 21:59:30 +02:00
parent fe7be81f1e
commit ad78ff3082
3 changed files with 15 additions and 15 deletions

View File

@@ -4,12 +4,12 @@
#include "Arduino.h"
struct HomeAssistantSensor {
char* name;
char* topic;
char* path;
char* uom;
char* devcl;
char* stacl;
const char* name;
const char* topic;
const char* path;
const char* uom;
const char* devcl;
const char* stacl;
};