Skip to content

Commit 65fd7aa

Browse files
authored
Add support for APDS-9960, Digital Proximity, Ambient Light, RGB and Gesture Sensor (#308)
apds9960: add support for apds9960
1 parent 82e9e4a commit 65fd7aa

File tree

8 files changed

+712
-1
lines changed

8 files changed

+712
-1
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ smoke-test:
1717
@md5sum ./build/test.hex
1818
tinygo build -size short -o ./build/test.hex -target=itsybitsy-m0 ./examples/apa102/main.go
1919
@md5sum ./build/test.hex
20+
tinygo build -size short -o ./build/test.hex -target=nano-33-ble ./examples/apds9960/proximity/main.go
21+
@md5sum ./build/test.hex
2022
tinygo build -size short -o ./build/test.hex -target=itsybitsy-m0 ./examples/apa102/itsybitsy-m0/main.go
2123
@md5sum ./build/test.hex
2224
tinygo build -size short -o ./build/test.hex -target=microbit ./examples/at24cx/main.go
@@ -216,7 +218,7 @@ DRIVERS = $(wildcard */)
216218
NOTESTS = build examples flash semihosting pcd8544 shiftregister st7789 microphone mcp3008 gps microbitmatrix \
217219
hcsr04 ssd1331 ws2812 thermistor apa102 easystepper ssd1351 ili9341 wifinina shifter hub75 \
218220
hd44780 buzzer ssd1306 espat l9110x st7735 bmi160 l293x dht keypad4x4 max72xx p1am tone tm1637 \
219-
pcf8563 mcp2515 servo sdcard rtl8720dn image cmd i2csoft hts221 lps22hb
221+
pcf8563 mcp2515 servo sdcard rtl8720dn image cmd i2csoft hts221 lps22hb apds9960
220222
TESTS = $(filter-out $(addsuffix /%,$(NOTESTS)),$(DRIVERS))
221223

222224
unit-test:

0 commit comments

Comments
 (0)