bibliopixel.control.receiver module

class bibliopixel.control.receiver.Receiver[source]

Bases: abc.ABC

Several classes receive data and route it to a target, and this is their base class, mainly for documentation.

Receivers must have two methods, set_project and receive. set_project must be called exactly once for each Receiver, and this must be before receive is ever.

receive(values)[source]
set_project(project)[source]