mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-07-26 10:38:41 +00:00
11 lines
204 B
Go
11 lines
204 B
Go
//go:build !nano_33_ble
|
|
// +build !nano_33_ble
|
|
|
|
package apds9960
|
|
|
|
// Configure sets up the APDS-9960 device.
|
|
func (d *Device) Configure(cfg Configuration) {
|
|
// configure device
|
|
d.configureDevice(cfg)
|
|
}
|