Files
LedD-Android/app/src/main/java/com/idlegandalf/ledd/components/Controller.java
Giovanni Harting aaa9c5da02 reworked a whole bunch of stuff
moved from assistant to one single activity model with dialogs and navigation drawer as main content holder
completed separate threaded queue based service to communicate with daemon(s)
added first few elements to the nav drawer
2015-09-01 05:56:48 +02:00

17 lines
285 B
Java

package com.idlegandalf.ledd.components;
import java.util.ArrayList;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class Controller {
private int channels;
private String address;
private int i2c_device;
private ArrayList<RGBStripe> stripes;
}