-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathECHONET8266.ino
executable file
·66 lines (51 loc) · 1.63 KB
/
ECHONET8266.ino
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
/*
8266お作法:
書き込むときは、白(PRG/IO0)を押しながら赤(RST)を押して赤を放して白を放す。
リセットしたくなったら赤。
*/
#define WIFI_SSID "SSID"
#define WIFI_PASS "PASS"
#include <ESP8266WiFi.h>
#include <WiFiUdp.h>
// Multicast
IPAddress ipMulti_(224, 0, 23,0);
byte ipMulti[] = {224,0,23,0};
unsigned int portMulti = 3610; // local port to listen on
static WiFiUDP udp ;
unsigned char sendData[] = {
// EHD1, EHD2, TID0, TID1
0x10, 0x81, 0x00, 0x00,
// GRP CLS INST (SEOJ)
0x01,0x30,0x01, // 機器オブジェクトから通知を出す (0130 = エアコン)
//0x0E,0xF0,0x01, // 自ノードのノードプロファイルオブジェクトから通知を出す
// GRP CLS INST (DEOJ)
0x0E,0xF0,0x01,
// ESV OPC EPC PDC EDT
0x73,0x01,0x80, 0x01, 0x30 // 動作状態(電源)変更通知
//0x62,0x01,0xD6, 0x00 // インスタンスリスト要求(機器発見)
} ;
int sendDataLen = 15 ;
void setup(){
Serial.begin(115200);
delay(10);
// We start by connecting to a WiFi network
WiFi.begin(WIFI_SSID, WIFI_PASS);
Serial.print("Wait for WiFi... ");
while(WiFi.status() != WL_CONNECTED) {
Serial.print(".");
delay(500);
}
Serial.println("WiFi connected: ");
Serial.println(WiFi.localIP());
delay(10);
//udp.begin(portMulti) ;
udp.beginMulticast(WiFi.localIP(),ipMulti,portMulti) ;
}
void loop(){
//udp.beginPacket(ipMulti , portMulti );
udp.beginPacketMulticast(ipMulti,portMulti,WiFi.localIP());
udp.write(sendData,sendDataLen) ;
udp.endPacket() ;
Serial.println("Packet sent.") ;
delay(5000) ;
}