-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathradio433client.man
More file actions
91 lines (91 loc) · 2.67 KB
/
radio433client.man
File metadata and controls
91 lines (91 loc) · 2.67 KB
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
.TH radio433client "1" "March 2017" "raspik-utils" "Raspik Utilities by Micu"
.SH NAME
radio433client - simple radio packet analyzer
.SH SYNOPSIS
.B radio433client
[
.B \-w
] [
.B \-P
] [
.B \-T
] [
.B \-R
] [
.BI "\-r " radioip
] [
.BI "\-p " radioport
]
.SH DESCRIPTION
This program connects to \fBradio433daemon\fR server and dumps each received packet
in more readable form. It displays device-specific data extracted from raw code,
based on radio source type. Known sources are listed below.
.PP
Program works continuously. Press \fICtrl\-C\fR to exit.
.SH SUPPORTED RADIO SOURCES
Program recognizes and decodes messages from following sources:
.TP
.I THM
Wireless outdoor weather sensors
.TP
.I PWR
Remote controls for power sockets
.TP
.I RMT
General purpose radio remote controls (currently not yet supported)
.SH OPTIONS
.TP
.B \-w
(optional) wait for \fBradio433daemon\fR server when starting
.TP
.B \-P
(optional) filter and show messages from remote controls for power sockets
.TP
.B \-T
(optional) filter and show messages from remote weather sensors
.TP
.B \-R
(optional) filter and show messages from general purpose remote controls (work in progress)
.TP
.BI "-r" " radioip"
(optional) IPv4 address of \fBradio433daemon\fR server
.TP
.BI "-p" " radioport"
(optional) TCP port of \fBradio433daemon\fR server
.PP
When no parameter is specified, client tries to connect to server 127.0.0.1 on port 5433
and displays all received messages.
.PP
With filters enabled, source type label in output string
is prefixed with asterisk '*' to give visual indication that only messages of certain type are
displayed.
.SH EXAMPLES
Example 0 - 4 identical repeated codes sent by "Hyundai WS Senzor 77TH" weather sensor
on channel id 2 (no type filtering):
.PP
.RS
.B 2017-06-26 19:13:55.087 THM len = 36 , code = 0x0A0D80971 , 2 , T: +2.7 C _ , H: 77 %
.br
.B 2017-06-26 19:13:55.210 THM len = 36 , code = 0x0A0D80971 , 2 , T: +2.7 C _ , H: 77 %
.br
.B 2017-06-26 19:13:55.332 THM len = 36 , code = 0x0A0D80971 , 2 , T: +2.7 C _ , H: 77 %
.br
.B 2017-06-26 19:13:55.454 THM len = 36 , code = 0x0A0D80971 , 2 , T: +2.7 C _ , H: 77 %
.RE
.PP
Example 1 - codes sent by custom remote controller for power sockets (filtering is set
to display only power socket signals):
.PP
.RS
.B 2017-05-26 19:25:06.261 *PWR len = 24 , code = 0x415144 , 12 : BE : OFF
.br
.B 2017-05-26 19:25:06.346 *PWR len = 24 , code = 0x415144 , 12 : BE : OFF
.br
.B 2017-05-26 19:25:06.431 *PWR len = 24 , code = 0x415144 , 12 : BE : OFF
.RE
.SH BUGS
None so far.
.SH SEE ALSO
.BR power433control "(1), " radiodump "(1), " radio433daemon "(8), " sensorproxy "(8), " buttonhandler "(8) "
.SH AUTHOR
Michal "Micu" Cieslakiewicz <michal.cieslakiewicz@wp.pl>