apply suggestions from team

This commit is contained in:
soypat
2025-04-30 15:18:21 -03:00
parent 06e4c0267f
commit f3945b1d58
9 changed files with 573 additions and 43 deletions
+4 -4
View File
@@ -1,9 +1,9 @@
package drivers
// PinInput is hardware abstraction for a pin which receives a
// digital signal and reads it (high or low voltage).
type PinInput func() (level bool)
// PinOutput is hardware abstraction for a pin which outputs a
// digital signal (high or low voltage).
type PinOutput func(level bool)
// PinInput is hardware abstraction for a pin which receives a
// digital signal and reads it (high or low voltage).
type PinInput func() (level bool)