6 #include <libusb-1.0/libusb.h>
8 #define USB_TIMEOUT 10000
10 #define ID_VENDOR 0x18ef
11 #define ID_PRODUCT 0xe015
15 /* Not in all libusb-1.0 versions, so we have to roll our own :-( */
16 static char * usb_strerror(int e
)
18 static char unknerr
[256];
24 return "Input/output error";
25 case LIBUSB_ERROR_INVALID_PARAM
:
26 return "Invalid parameter";
27 case LIBUSB_ERROR_ACCESS
:
28 return "Access denied (insufficient permissions)";
29 case LIBUSB_ERROR_NO_DEVICE
:
30 return "No such device (it may have been disconnected)";
31 case LIBUSB_ERROR_NOT_FOUND
:
32 return "Entity not found";
33 case LIBUSB_ERROR_BUSY
:
34 return "Resource busy";
35 case LIBUSB_ERROR_TIMEOUT
:
36 return "Operation timed out";
37 case LIBUSB_ERROR_OVERFLOW
:
39 case LIBUSB_ERROR_PIPE
:
41 case LIBUSB_ERROR_INTERRUPTED
:
42 return "System call interrupted (perhaps due to signal)";
43 case LIBUSB_ERROR_NO_MEM
:
44 return "Insufficient memory";
45 case LIBUSB_ERROR_NOT_SUPPORTED
:
46 return "Operation not supported or unimplemented on this platform";
47 case LIBUSB_ERROR_OTHER
:
50 snprintf(unknerr
, sizeof(unknerr
), "Unknown error code %d / 0x%02x", e
, e
);
54 libusb_device_handle
*fs20pcs_find() {
55 libusb_device_handle
*devh
= NULL
;
61 cnt
= libusb_get_device_list(NULL
, &list
);
63 fprintf(stderr
, "Can't get USB device list: %d\n", (int)cnt
);
67 for (i
= 0; i
< cnt
; i
++){
68 struct libusb_device_descriptor desc
;
70 err
= libusb_get_device_descriptor(list
[i
], &desc
);
74 if ((desc
.idVendor
== ID_VENDOR
) && (desc
.idProduct
== ID_PRODUCT
)) {
75 libusb_device
*dev
= list
[i
];
77 err
= libusb_open(dev
, &devh
);
79 fprintf(stderr
, "Can't open device: %s\n", usb_strerror(err
));
83 err
= libusb_detach_kernel_driver(devh
, 0);
84 if ((err
!= 0) && (err
!= LIBUSB_ERROR_NOT_FOUND
)) {
85 fprintf(stderr
, "Can't detach kernel driver: %s\n", usb_strerror(err
));
89 err
= libusb_claim_interface(devh
, 0);
91 fprintf(stderr
, "Can't claim interface: %s\n", usb_strerror(err
));
103 int fs20pcs_send(libusb_device_handle
*devh
, unsigned char* send_data
)
105 unsigned char recv_data
[5] = {0x00, 0x00, 0x00, 0x00, 0x00};
111 err
= libusb_interrupt_transfer(devh
, 0x01, send_data
, 11, &cnt
, 5000);
113 fprintf(stderr
, "Can't send data: %s\n", usb_strerror(err
));
117 err
= libusb_interrupt_transfer(devh
, 0x81, recv_data
, sizeof(recv_data
), &cnt
, 5000);
119 fprintf(stderr
, "Can't receive data: %s\n", usb_strerror(err
));
123 if ((recv_data
[0] != 0x02) ||
124 (recv_data
[1] != 0x03) ||
125 (recv_data
[2] != 0xa0)) {
126 fprintf(stderr
, "Unexpected response: ");
127 for (i
= 0; i
< cnt
; i
++) {
128 fprintf(stderr
, "0x%02x ", recv_data
[i
]);
130 fprintf(stderr
, "\n");
137 switch(recv_data
[3]) {
142 printf("Firmware: V%d.%d", ((recv_data
[4] & 0xf0) >> 4) & 0x0f, recv_data
[4] & 0x0f);
145 printf("Unknown command");
149 printf("Wrong length");
153 printf("Aborted sending long press");
156 printf("Nothing to stop");
159 printf("Unknown response: 0x%02x 0x%02x", recv_data
[3], recv_data
[4]);
169 unsigned char *parse_housecode(char *hc
)
171 static unsigned char housecode
[2];
180 memset(housecode
, 0, sizeof(housecode
));
184 if (strncmp(hc
, "0x", 2)) {
185 fprintf(stderr
, "Not a 2 byte hexstring: %s\n", hc
);
189 val
= strtoul(hc
, &ep
, 16);
191 fprintf(stderr
, "Not a 2 byte hexstring: %s\n", hc
);
196 memset(hc_fixed
, 0, sizeof(hc_fixed
));
197 for (i
= 0; i
< 8; i
++) {
198 if ((hc
[i
] < '1') || (hc
[i
] > '4')) {
199 fprintf(stderr
, "Not a valid ELV housecode: %s\n", hc
);
202 hc_fixed
[i
] = hc
[i
] - 1;
203 val
= strtoul(hc_fixed
, &ep
, 4);
206 fprintf(stderr
, "Can't parse fixed ELV housecode: %s\n", hc_fixed
);
212 fprintf(stderr
, "Housecode has to be 4 or 8 chars long!\n");
217 housecode
[0] = (val
& 0xff00) >> 8;
218 housecode
[1] = (val
& 0xff);
223 void syntax(char *prog
)
225 fprintf(stderr
, "Syntax: %s options\n\n", prog
);
226 fprintf(stderr
, "Possible options:\n");
227 fprintf(stderr
, "\t-V\t\trequest firmware-version\n");
228 fprintf(stderr
, "\t-x\t\tabort sending long press\n");
229 fprintf(stderr
, "\t-h [ELV|hex]\thousecode in ELV- or hex-notation\n");
230 fprintf(stderr
, "The following actions need an housecode:\n");
231 fprintf(stderr
, "\t-a n\t\tsend commands to device at address n\n");
232 fprintf(stderr
, "\t-s hex\t\tsend command byte\n");
233 fprintf(stderr
, "\t-e hex\t\textension byte for command\n");
234 fprintf(stderr
, "\t-r n\t\trepeat sending n times\n");
235 fprintf(stderr
, "\nCommand bytes (without extension byte):\n");
236 fprintf(stderr
, "0x00\t\tswitch off\n");
237 fprintf(stderr
, "0x01-0x10\tswitch on dimmed (0x01: 6.25%%, 0x02: 12.5%%, ..., 0x10: 100%%)\n");
238 fprintf(stderr
, "0x11\t\tswitch on\n");
239 fprintf(stderr
, "0x12\t\ttoggle\n");
240 fprintf(stderr
, "0x13\t\tdimup\n");
241 fprintf(stderr
, "0x14\t\tdimdown\n");
242 fprintf(stderr
, "0x15\t\tdimup, pause, dimdown, pause, ...\n");
243 fprintf(stderr
, "0x16\t\tstart/stop programming internal timer\n");
244 fprintf(stderr
, "0x17\t\tlearn housecode/address\n");
245 fprintf(stderr
, "0x18\t\toff for internal timer, then back on with current level\n");
246 fprintf(stderr
, "0x19\t\ton (100%%) for internal timer, then off\n");
247 fprintf(stderr
, "0x1a\t\ton (old level) for internal timer, then off\n");
248 fprintf(stderr
, "0x1b\t\tfactory reset\n");
249 fprintf(stderr
, "0x1e\t\ton (100%%) for internal timer, then old level\n");
250 fprintf(stderr
, "0x1f\t\ton (old level) for internal timer, then old state\n");
251 fprintf(stderr
, "\nCommand bytes (with timer as extension byte):\n");
252 fprintf(stderr
, "0x20\t\tdim down to off while timer is running\n");
253 fprintf(stderr
, "0x21-0x30\tdim to (0x01: 6.25%%, 0x02: 12.5%%, ..., 0x10: 100%%) while timer is running\n");
254 fprintf(stderr
, "0x31\t\tdim to last level while timer is running\n");
255 fprintf(stderr
, "0x32\t\tdim to off, then after timer dim to off\n");
256 fprintf(stderr
, "0x33\t\tdimup now and switch off after timer\n");
257 fprintf(stderr
, "0x34\t\tdimdown now and switch off after timer\n");
258 fprintf(stderr
, "0x35\t\tdimup or dimdown (toggle) and switch off after timer\n");
259 fprintf(stderr
, "0x36\t\tprogram internal timer\n");
260 fprintf(stderr
, "0x38\t\toff for timer, then back on with current level\n");
261 fprintf(stderr
, "0x39\t\ton (100%%) for timer, then off\n");
262 fprintf(stderr
, "0x3a\t\ton (old level) for timer, then off\n");
263 fprintf(stderr
, "0x3c\t\tprogram internal ramp-up-time\n");
264 fprintf(stderr
, "0x3d\t\tprogram internal ramp-down-time\n");
265 fprintf(stderr
, "0x3e\t\ton (100%%) for timer, then old level\n");
266 fprintf(stderr
, "0x3f\t\ton (old level) for timer, then old state\n");
276 #define DUPLICATE_ACTION if (action != NO_ACTION) { \
277 fprintf(stderr, "duplicate action specified!\n"); \
278 exit(EXIT_FAILURE); }
280 int main(int argc
, char **argv
)
282 unsigned char send_data
[11];
283 unsigned char *housecode
= NULL
;
284 libusb_device_handle
*devh
= NULL
;
288 int action
= NO_ACTION
;
289 uint8_t command
= 0x00;
290 uint8_t extension
= 0x00;
294 memset(send_data
, 0, sizeof(send_data
));
298 while ((opt
= getopt(argc
, argv
, "Vxs:h:a:r:e:")) != -1) {
302 action
= REQUEST_FIRMWARE
;
306 action
= ABORT_LONG_PRESS
;
310 action
= SEND_COMMAND
;
312 command
= strtoul(optarg
, &ep
, 16);
314 fprintf(stderr
, "Can't parse command!\n");
318 printf("Got command: %d\n", command
);
322 housecode
= parse_housecode(optarg
);
324 fprintf(stderr
, "Can't parse housecode!\n");
328 printf("Got housecode: 0x%02x%02x\n", housecode
[0], housecode
[1]);
332 addr
= strtoul(optarg
, &ep
, 10);
334 fprintf(stderr
, "Can't parse address!\n");
338 printf("Got address: 0x%02x\n", addr
);
342 repeat
= strtoul(optarg
, &ep
, 10);
344 fprintf(stderr
, "Can't parse repeat!\n");
348 printf("Got repeat: %d\n", repeat
);
352 extension
= strtoul(optarg
, &ep
, 16);
354 fprintf(stderr
, "Can't parse extension!\n");
358 printf("Got extension: %d\n", extension
);
371 case REQUEST_FIRMWARE
:
374 printf("Requesting firmware version...\n");
377 case ABORT_LONG_PRESS
:
380 printf("Aborting long press...\n");
384 if (housecode
== NULL
) {
385 fprintf(stderr
, "housecode needed!\n");
389 fprintf(stderr
, "address needed!\n");
396 send_data
[8] = repeat
;
397 printf("Sending 0x%02x 0x%02x to address %d (hc: 0x%02x%02x) (repeated %d times)\n",
398 command
, extension
, addr
,
399 housecode
[0], housecode
[1],
404 printf("Sending 0x%02x 0x%02x to address %d (hc: 0x%02x%02x)\n",
405 command
, extension
, addr
,
406 housecode
[0], housecode
[1]);
408 send_data
[3] = housecode
[0];
409 send_data
[4] = housecode
[1];
411 send_data
[6] = command
;
412 send_data
[7] = extension
;
417 fprintf(stderr
, "No action specified!\n\n");
423 err
= libusb_init(NULL
);
425 fprintf(stderr
, "Can't initialize libusb: %s\n", usb_strerror(err
));
429 devh
= fs20pcs_find();
431 fprintf(stderr
, "Can't find/open fs20pcs!\n");
435 if (fs20pcs_send(devh
, send_data
) == 0) {
436 fprintf(stderr
, "Can't communicate with fs20pcs!\n");