Quote:
Originally Posted by Parthenon
relay1.Set(relay1.kForward);
|
Try
Code:
relay1.Set(Relay::kForward);
instead. The thing before the double colon
:: and the
kForward constant isn't an object. It's a "namespace", in this case saying you want to use the named constant from the group of things associated with the Relay class.