-
Notifications
You must be signed in to change notification settings - Fork 0
/
488-4-2(ESPNOW로받은것을MQTT로업로드하는보드).txt
172 lines (134 loc) · 4.18 KB
/
488-4-2(ESPNOW로받은것을MQTT로업로드하는보드).txt
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
#include <ESP8266WiFi.h>
#include <PubSubClient.h>
#include <espnow.h>
byte board[] = {0x84,0xCC,0xA8,0xAE,0xBB,0xED};
unsigned long t = 0;
// Update these with values suitable for your network.
const char* ssid = "nockanda";
const char* password = "11213144";
const char* mqtt_server = "192.168.0.11";
WiFiClient espClient;
PubSubClient client(espClient);
unsigned long lastMsg = 0;
#define MSG_BUFFER_SIZE (50)
char msg[MSG_BUFFER_SIZE];
int value = 0;
struct nockanda{
float temp;
float humi;
};
nockanda mybox;
void setup_wifi() {
delay(10);
// We start by connecting to a WiFi network
Serial.println();
Serial.print("Connecting to ");
Serial.println(ssid);
WiFi.mode(WIFI_STA);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
randomSeed(micros());
Serial.println("");
Serial.println("WiFi connected");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
}
void callback(char* topic, byte* payload, unsigned int length) {
Serial.print("Message arrived [");
Serial.print(topic);
Serial.print("] ");
for (int i = 0; i < length; i++) {
Serial.print((char)payload[i]);
}
Serial.println();
// Switch on the LED if an 1 was received as first character
if ((char)payload[0] == '1') {
digitalWrite(BUILTIN_LED, LOW); // Turn the LED on (Note that LOW is the voltage level
// but actually the LED is on; this is because
// it is active low on the ESP-01)
} else {
digitalWrite(BUILTIN_LED, HIGH); // Turn the LED off by making the voltage HIGH
}
}
void reconnect() {
// Loop until we're reconnected
while (!client.connected()) {
Serial.print("Attempting MQTT connection...");
// Create a random client ID
String clientId = "ESP8266Client-";
clientId += String(random(0xffff), HEX);
// Attempt to connect
if (client.connect(clientId.c_str(),"mqtt","123123")) {
Serial.println("connected");
// Once connected, publish an announcement...
client.publish("outTopic", "hello world");
// ... and resubscribe
client.subscribe("nockanda/hass_in");
} else {
Serial.print("failed, rc=");
Serial.print(client.state());
Serial.println(" try again in 5 seconds");
// Wait 5 seconds before retrying
delay(5000);
}
}
}
void setup() {
pinMode(BUILTIN_LED, OUTPUT); // Initialize the BUILTIN_LED pin as an output
Serial.begin(115200);
setup_wifi();
client.setServer(mqtt_server, 1883);
client.setCallback(callback);
//ESPNOW의 기능을 활성화한다!
if (esp_now_init() != 0) {
//ESP NOW 시작 실패!
Serial.println("ESPNOW 실패!");
return;
}else{
//ESP NOW 시작 성공!
Serial.println("ESPNOW 성공!");
}
//지금 이보드의 역할은 주고 받는것을 다하겠다!
esp_now_set_self_role(ESP_NOW_ROLE_COMBO);
//나의 슬레이브를 등록해야겠다!
esp_now_add_peer(board, ESP_NOW_ROLE_COMBO, 1, NULL, 0);//뒤에 2개는 ID, PW
//송신완료 콜백함수 등록
esp_now_register_send_cb(OnDataSent);
//수신완료 콜백 함수 등록
esp_now_register_recv_cb(OnDataRecv);
}
void loop() {
if (!client.connected()) {
reconnect();
}
client.loop();
/*
unsigned long now = millis();
if (now - lastMsg > 2000) {
lastMsg = now;
++value;
snprintf (msg, MSG_BUFFER_SIZE, "hello world #%ld", value);
Serial.print("Publish message: ");
Serial.println(msg);
client.publish("nockanda/hass_out", msg);
}
*/
}
//송신콜백함수 원형:
void OnDataSent(uint8_t *mac, uint8_t status) {
//status가 0일때 송신 완료!
if(status == 0){
Serial.println("성공적으로 송신했음!");
}else{
Serial.println("송신 실패!!");
}
}
//수신콜백함수 원형:
void OnDataRecv(uint8_t * mac, uint8_t * data, uint8_t len) {
memcpy(&mybox,data,sizeof(mybox));
String mypayload = "{\"TEMP\":"+String(mybox.temp)+",\"HUMI\":"+String(mybox.humi)+"}";
client.publish("nockanda/hass_out", mypayload.c_str());
}