mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-10 01:43:40 +00:00
30 lines
1.1 KiB
Go
30 lines
1.1 KiB
Go
package legacy
|
|
|
|
// PinOutput represents a pin hardware abstraction layer for a pin that can output a digital signal.
|
|
// This is an alternative to drivers.PinOutput abstraction which is a function type. Pros and cons
|
|
// of both approaches have been discussed in the [relevant issue]. PinOutput should only be used
|
|
// to expose an initialization function of a driver that receives pins of this type. Ideally
|
|
// driver developers should also expose the initialization with drivers.Pin type:
|
|
//
|
|
// func New(p1, p2, p3 legacy.PinOutput) *Device {
|
|
// return NewWithPinfuncs(p1.Set, p2.Set, p3.Set)
|
|
// }
|
|
//
|
|
// func NewWithPinfuncs(p1, p2, p3 drivers.PinOutput) *Device {
|
|
// return &Device{p1:p1, p2:p2, p3:p3}
|
|
// }
|
|
//
|
|
// [relevant issue]: https://github.com/tinygo-org/drivers/pull/749/files
|
|
type PinOutput interface {
|
|
Set(level bool)
|
|
}
|
|
|
|
// ConfigurePinOut is a legacy function used to configure pins as outputs.
|
|
//
|
|
// Deprecated: Do not configure pins in drivers.
|
|
// This is a legacy feature and should only be used by drivers that
|
|
// previously configured pins in initialization to avoid breaking users.
|
|
func ConfigurePinOut(p PinOutput) {
|
|
configurePinOut(p)
|
|
}
|