-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMqttTopics_Example.h
More file actions
27 lines (18 loc) · 896 Bytes
/
MqttTopics_Example.h
File metadata and controls
27 lines (18 loc) · 896 Bytes
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
#ifndef MQTT_TOPICS_H
#define MQTT_TOPICS_H
// Replace with your actual topics:
const char* frontdoor_topic = "your/topic/goes/here";
const char* frontbutton_topic = "your/topic/goes/here";
const char* backdoor_topic = "your/topic/goes/here";
const char* backbutton_topic = "your/topic/goes/here";
const char* garageToHouse_topic = "your/topic/goes/here";
const char* frontdoor_status_topic = "your/topic/goes/here";
const char* backdoor_status_topic = "your/topic/goes/here";
const char* esp_restart_topic = "your/topic/goes/here";
const char* collin_car_topic = "your/topic/goes/here";
const char* collin_car_distance_topic = "your/topic/goes/here";
const char* cheryl_car_topic = "your/topic/goes/here";
const char* cheryl_car_distance_topic = "your/topic/goes/here";
const char* temperature_topic = "your/topic/goes/here";
const char* humidity_topic = "your/topic/goes/here";
#endif