aboutsummaryrefslogtreecommitdiff
path: root/dev_linux.go
blob: cad10bbfec705c33f17ddd2e5b492beeb25684c4 (plain)
1
2
3
4
5
6
7
package robo

const LPDevice = "/dev/usb/lp0"

func Open() (Device, error) {
	return NewLP(LPDevice)
}