tessel / tessel-rust

Rust driver for Tessel 2.
https://docs.rs/tessel/
86 stars 12 forks source link

ServoArray / RelayArray naming #40

Open tcr opened 8 years ago

tcr commented 8 years ago

We want a struct whose name reflects a set of 16 Servos, or two Relays. What are good names for this struct? I used "servo array" as a literal term, but maybe it's not the best.

rwaldron commented 8 years ago

ServoArray / RelayArray

Seems fine, as long as they are actually arrays of Servo and Relay objects.

(edit)

In Johnny-Five, you can control one or more servos on the PCA9685 as separate Servo objects, or as a collection of Servos—which is just an "array like" object that contains Servo objects