Skip to content

Commit

Permalink
damn.. it looks like it is working!
Browse files Browse the repository at this point in the history
colorspace wrong though
  • Loading branch information
x37v committed Oct 10, 2012
1 parent 4cb4ba5 commit 40e5b2a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions gst/gstledwallvideosink.c
Expand Up @@ -234,10 +234,11 @@ gst_led_wall_video_sink_construct(GType gtype,

/* update the object state depending on constructor properties */

char * output_name = "/dev/ttyUSB000";
//char * output_name = "/dev/ttyUSB000";
char * output_name = "/dev/ttyACM0";
if (!led_open_output(output_name, num_leds)) {
printf("cannot open output %s, trying ttyACM0\n", output_name);
output_name = "/dev/ttyACM0";
printf("cannot open output %s, trying ttyUSB000\n", output_name);
output_name = "/dev/ttyUSB000";
if (!led_open_output(output_name, num_leds)) {
output_name = "/dev/ttyACM1";
if (!led_open_output(output_name, num_leds)) {
Expand Down

0 comments on commit 40e5b2a

Please sign in to comment.