This is a copy from: periph.io/x/periph/experimental/devices/inky
This is here because it seems `go mod` cannot load it.
TODO: Delete this as soon as I figure out why this is the case.
ColorModel implements display.Drawer
Maps white to white, black to black and anything else as red. Red is used as
a placeholder for the display's third color, i.e., red or yellow.
type Opts struct {
// Model being used. Model Model// Model color. ModelColor Color// Initial border color. Will be set on the first Draw(). BorderColor Color
}
Opts is the options to specify which device is being controlled and its
default settings.