-
Notifications
You must be signed in to change notification settings - Fork 47
/
send.cpp
executable file
·204 lines (188 loc) · 7.31 KB
/
send.cpp
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
/*
* Usage: ./send <systemCode> <unitCode> <command>
* Command is 0 for OFF and 1 for ON
*/
#include "RCSwitch.h"
#include <stdlib.h>
#include <stdio.h>
#include <string>
#include <getopt.h>
//#include <iostream>
void printUsage() {
printf("This is rasperry remote, an application to control remote plugs with the\nRaspberry Pi.\n");
printf("Based on RCSwitch and wiringPi. See github.com/xkonni/raspberry-remote for\nfurther reference.\n");
printf("Usage: \n sudo send [options] <systemCode> <unitCode> [<systemCode> <unitCode>] <command>\n or: sudo send -h\n\n");
printf("Options:\n\n");
printf(" -b, --binary:\n");
printf(" Switches the instance to binary mode.\n");
printf(" Binary mode means, that instead numbering the sockets by 00001 00010 00100\n");
printf(" 01000 10000, the sockets are numbered in real binary numbers as following:\n");
printf(" 00001 00010 00011 00100 00101 00110 and so on.\n");
printf(" This means that your sockets need to be setup in this manner, which often\n");
printf(" includes that the dedicated remote is rendered useless, but more than\n");
printf(" 6 sockets are supported.\n\n");
printf(" -h, --help:\n");
printf(" displays this help\n\n");
printf(" -p X, --pin=X\n");
printf(" Sets the pin to use to communicate with the sender.\n");
printf(" Important note: when running as root, pin numbers are wiringPi numbers while\n");
printf(" in user mode (-u, --user) pin numbers are BCM_GPIO numbers.\n");
printf(" See http://wiringpi.com/pins/ for details.\n");
printf(" Default: 0 in normal mode, 17 in user mode\n\n");
printf(" -s, --silent:\n");
printf(" Don't print any text, except for errors\n\n");
printf(" -u, --user:\n");
printf(" Switches the instance to user mode.\n");
printf(" In this mode this program does not need root privileges. It is required to\n");
printf(" export the GPIO pin using the gpio utility. Note that pin numbers are\n");
printf(" BCM_GPIO numbers in this mode! the export command for the default port is\n");
printf(" \"gpio export 17 out\". For more information about port numbering see\n");
printf(" http://wiringpi.com/pins/.\n\n");
}
int main(int argc, char *argv[]) {
bool silentMode = false;
bool binaryMode = false;
bool userMode = false;
int pin = 0;
int controlArgCount = 0;
char *systemCode;
int unitCode;
int command;
bool multiMode;
int c;
while (1) {
static struct option long_options[] =
{
{"binary", no_argument, 0, 'b'},
{"help", no_argument, 0, 'h'},
{"pin", required_argument, 0, 'p'},
{"silent", no_argument, 0, 's'},
{"user", no_argument, 0, 'u'},
0
};
int option_index = 0;
c = getopt_long (argc, argv, "bhp:su",long_options, &option_index);
/* Detect the end of the options. */
if (c == -1)
break;
switch (c) {
case 'b':
binaryMode = true;
break;
case 'p':
pin = atoi(optarg);
break;
case 's':
silentMode = true;
break;
case 'u':
userMode = true;
break;
case 'h':
printUsage();
return 0;
}
}
// When started in user mode, wiringPiSetupSys() is used. In this mode
// wiringPi uses the /sys/class/gpio interface and the GPIO pin are numbered
// by the native Broadcom GPIO numbers, where wiringPi-number 0 translates to
// bcm-number 17... so use this as default if no pin was set with -p
// reference:
// http://wiringpi.com/reference/setup/
// http://wiringpi.com/pins/
if (pin == 0 && userMode) {
pin = 17;
}
controlArgCount = argc - optind;
// we need at least 3 args: systemCode, unitCode and command
if (controlArgCount >= 3) {
if (!silentMode) {
if (binaryMode) {
printf("operating in binary mode\n");
}
if (userMode) {
printf("operating in user mode\n");
}
printf("using pin %d\n", pin);
}
char *controlArgs[controlArgCount];
int i = 0;
while (optind < argc && i < controlArgCount) {
controlArgs[i] = argv[optind++];
i++;
}
multiMode = controlArgCount > 3;
int numberOfActuators = (controlArgCount - 1) / 2;
// check if there are enough arguments supplied, we need (numberOfActuators * 2) + 1
if (controlArgCount != (numberOfActuators * 2) + 1) {
printf("invalid set of control arguments\nuse <systemCode> <unitCode> <command> or\n");
printf("<systemCode> <unitCode> [<systemCode> <unitCode>...] <command>\n");
return 1;
}
if (multiMode && !silentMode) {
printf("multi mode\n");
}
command = atoi(controlArgs[controlArgCount - 1]);
if (userMode) {
if (wiringPiSetupSys() == -1) return 1;
} else {
if (wiringPiSetup() == -1) return 1;
}
piHiPri(20);
RCSwitch mySwitch = RCSwitch();
mySwitch.setPulseLength(300);
mySwitch.enableTransmit(pin);
for (i = 0; i < numberOfActuators; i++) {
int indexSystemCode = i * 2;
int indexUnitCode = indexSystemCode + 1;
systemCode = controlArgs[indexSystemCode];
unitCode = atoi(controlArgs[indexUnitCode]);
if (!silentMode) {
printf("sending systemCode[%s] unitCode[%i] command[%i]\n", systemCode, unitCode, command);
}
if (binaryMode) {
switch (command) {
case 1:
mySwitch.switchOnBinary(systemCode, unitCode);
break;
case 0:
mySwitch.switchOffBinary(systemCode, unitCode);
break;
default:
printf("command[%i] is unsupported\n", command);
printUsage();
if (!multiMode) {
return -1;
}
}
} else {
switch (command) {
case 1:
mySwitch.switchOn(systemCode, unitCode);
break;
case 0:
mySwitch.switchOff(systemCode, unitCode);
break;
case 2:
// 00001 2 on binary coded
mySwitch.send("010101010001000101010001");
break;
case 3:
// 00001 2 on as TriState
mySwitch.sendTriState("FFFF0F0FFF0F");
break;
default:
printf("command[%i] is unsupported\n", command);
printUsage();
if (!multiMode) {
return -1;
}
}
}
}
return 0;
} else {
printUsage();
return -1;
}
}