You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
an abstraction of the vehicle bus, and it's devices in provide APIs at the device level
each modelled device has an verbose API that maps one to one with applicable commands e.g. radio.led(led: 0xFF) => 68 04 F0 4A FF D6
sitting atop this verbose API, is a more 'human' API that models key features, e.g. radio.change_disc!(5), and which avoids the need for knowledge of the commands.
Architecture
the abstraction was designed to provide an extensible intermediate interface to the bus
this design was the true goal, not to have an comprehensive API. Aside from the need to first manually map out the commands via extensive tinkering and programatically generated random commands, I only had a handful of higher level features in mind to begin with.