You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
263 B
Go

package devices
import "github.com/OrbTools/OrbCommon/gui"
//Device defines a JSON device
//NYI
type Device struct {
EB int
BINDLEN int
BINDING []byte
GUI gui.GUI
}
//DeviceList List of supported devices
var DeviceList = []string{
"Orbweaver",
}