mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-04 15:07:46 +00:00
bee7422c3a
Fix HTS221, LPS22HB and APDS9960 drivers and their examples for Arduino Nano 33 BLE: * Update hts221_nano_33_ble.go * Update lps22hb_nano_33_ble.go * Update apds9960_nano_33_ble.go
13 lines
235 B
Go
13 lines
235 B
Go
//go:build !nano_33_ble
|
|
// +build !nano_33_ble
|
|
|
|
package apds9960
|
|
|
|
import "tinygo.org/x/drivers"
|
|
|
|
// Configure sets up the APDS-9960 device.
|
|
func (d *Device) Configure(cfg Configuration) {
|
|
// configure device
|
|
d.configureDevice(cfg)
|
|
}
|