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
Because of the way rust handles Enums vs Integers, there is no convenient way to invert a logic level with rust-wiringpi. I propose std::ops::Not be implemented for Value so that it can be inverted:
!High would be Low !Low would be High
The text was updated successfully, but these errors were encountered:
Because of the way rust handles Enums vs Integers, there is no convenient way to invert a logic level with rust-wiringpi. I propose
std::ops::Not
be implemented forValue
so that it can be inverted:!High
would beLow
!Low
would beHigh
The text was updated successfully, but these errors were encountered: