You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+45-4Lines changed: 45 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,17 +20,27 @@ graph TD;
20
20
Request-.->Hello
21
21
Request-.->PostResults
22
22
Request-.->PostStats
23
-
Request-.->Bye
23
+
Request-.->SendNotification
24
24
Request-.->GetSetting
25
-
Request-.->GetSettings
25
+
Request-.->UpdateCheck
26
+
Request-.->NextUpdateChunk
27
+
Request-.->ReportFirmwareUpdate
28
+
Request-.->Bye
26
29
27
30
Response-.->Pong
28
31
Response-.->Ok
29
32
Response-.->Reject
30
-
Response-.->Setting
33
+
Response-.->FirmwareUpToDate
34
+
Response-.->UpdateAvailable
35
+
Response-.->UpdatePart
36
+
Response-.->UpdateEnd
31
37
Response-.->Settings
32
38
```
33
39
40
+
### Ping test message (`Ping`)
41
+
The `Pind` message is only used for testing if the connection to the server is alive. The server will respond with a `Pong` message.
42
+
```
43
+
34
44
### Introduction message (`Hello`)
35
45
The `Hello` message is the first message sent by the client (node) to the server. It contains the MAC address of the client. The server will respond with an `Ok` message if the client is authorized to communicate with the server.
0 commit comments