├── .gitignore ├── README.md ├── config └── FreeRTOSConfig.h ├── main.c ├── patch ├── boards.h.patch └── sparkfun_nrf52840_mini.h ├── sparkfun └── blank │ ├── armgcc │ ├── Makefile │ └── zigbee_light_sensor_freertos_gcc_nrf52.ld │ └── config │ └── sdk_config.h ├── tsl2561.c ├── tsl2561.h ├── tsl2561_lux.c ├── tsl2561_lux.h ├── twi_config.h └── zb_light_sensor.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otaviojr/zigbee_light_sensor/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otaviojr/zigbee_light_sensor/HEAD/README.md -------------------------------------------------------------------------------- /config/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otaviojr/zigbee_light_sensor/HEAD/config/FreeRTOSConfig.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otaviojr/zigbee_light_sensor/HEAD/main.c -------------------------------------------------------------------------------- /patch/boards.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otaviojr/zigbee_light_sensor/HEAD/patch/boards.h.patch -------------------------------------------------------------------------------- /patch/sparkfun_nrf52840_mini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otaviojr/zigbee_light_sensor/HEAD/patch/sparkfun_nrf52840_mini.h -------------------------------------------------------------------------------- /sparkfun/blank/armgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otaviojr/zigbee_light_sensor/HEAD/sparkfun/blank/armgcc/Makefile -------------------------------------------------------------------------------- /sparkfun/blank/armgcc/zigbee_light_sensor_freertos_gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otaviojr/zigbee_light_sensor/HEAD/sparkfun/blank/armgcc/zigbee_light_sensor_freertos_gcc_nrf52.ld -------------------------------------------------------------------------------- /sparkfun/blank/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otaviojr/zigbee_light_sensor/HEAD/sparkfun/blank/config/sdk_config.h -------------------------------------------------------------------------------- /tsl2561.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otaviojr/zigbee_light_sensor/HEAD/tsl2561.c -------------------------------------------------------------------------------- /tsl2561.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otaviojr/zigbee_light_sensor/HEAD/tsl2561.h -------------------------------------------------------------------------------- /tsl2561_lux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otaviojr/zigbee_light_sensor/HEAD/tsl2561_lux.c -------------------------------------------------------------------------------- /tsl2561_lux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otaviojr/zigbee_light_sensor/HEAD/tsl2561_lux.h -------------------------------------------------------------------------------- /twi_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otaviojr/zigbee_light_sensor/HEAD/twi_config.h -------------------------------------------------------------------------------- /zb_light_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otaviojr/zigbee_light_sensor/HEAD/zb_light_sensor.h --------------------------------------------------------------------------------