{FALSE,FALSE,0,CTUN}
};
-SWITCH *switches=switches_no_controller;
+SWITCH *switches=switches_controller1[0];
static int running=0;
switch(ctrlr) {
case NO_CONTROLLER:
encoders=encoders_no_controller;
- switches=switches_no_controller;
+ switches=switches_controller1[0];
break;
case CONTROLLER1:
encoders=encoders_controller1;
#ifdef GPIO
switch(controller) {
case NO_CONTROLLER:
+ {
+ GtkWidget *switches_b=gtk_button_new_with_label("Switches");
+ g_signal_connect (switches_b, "button-press-event", G_CALLBACK(switch_cb), NULL);
+ gtk_grid_attach(GTK_GRID(grid),switches_b,(i%5),i/5,1,1);
+ i++;
+ }
break;
case CONTROLLER1:
case CONTROLLER2_V1:
function=0;
- if(controller==CONTROLLER1) {
+ if(controller==NO_CONTROLLER || controller==CONTROLLER1) {
notebook=gtk_notebook_new();
}
gint max_switches=MAX_SWITCHES;
switch(controller) {
case NO_CONTROLLER:
- max_switches=0;
- temp_switches=switches_no_controller;
+ max_switches=8;
+ temp_switches=switches_controller1[function];
break;
case CONTROLLER1:
max_switches=8;
col++;
widget=gtk_label_new(NULL);
- gtk_label_set_markup(GTK_LABEL(widget),"<b>Function</b>");
+ gtk_label_set_markup(GTK_LABEL(widget),"<b>Action</b>");
gtk_grid_attach(GTK_GRID(grid),widget,col,row,1,1);
row++;
gtk_grid_attach(GTK_GRID(grid),widget,col,row,1,1);
col++;
- if(controller==CONTROLLER1 && (i==0 || i==(max_switches-1))) {
+ if((controller==NO_CONTROLLER || controller==CONTROLLER1) && (i==0 || i==(max_switches-1))) {
widget=gtk_label_new(NULL);
g_sprintf(label,"<b>%s</b>",sw_string[temp_switches[i].switch_function]);
gtk_label_set_markup (GTK_LABEL(widget), label);
col=0;
}
- if(controller==CONTROLLER1) {
+ if(controller==NO_CONTROLLER || controller==CONTROLLER1) {
g_sprintf(label,"Function %d",function);
gtk_notebook_append_page(GTK_NOTEBOOK(notebook),grid,gtk_label_new(label));
function++;