├── .gitignore ├── Makefile ├── README.md ├── ancs.h ├── ancs_base.h ├── ancs_data_source.cpp ├── ancs_data_source.h ├── ancs_notification.cpp ├── ancs_notification.h ├── ancs_notification_list.cpp ├── ancs_notification_list.h ├── ancs_notification_source.cpp ├── ancs_notification_source.h ├── examples └── ancs_lcd │ └── ancs_lcd.ino ├── linked_list.h ├── my_services.h ├── notif.cpp ├── notif.h ├── nrf8001_ancs.xml ├── pack_lib.h ├── services.h ├── services_lock.h ├── ublue_setup.gen.out.txt ├── utilities.cpp └── utilities.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.disabled 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/README.md -------------------------------------------------------------------------------- /ancs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/ancs.h -------------------------------------------------------------------------------- /ancs_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/ancs_base.h -------------------------------------------------------------------------------- /ancs_data_source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/ancs_data_source.cpp -------------------------------------------------------------------------------- /ancs_data_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/ancs_data_source.h -------------------------------------------------------------------------------- /ancs_notification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/ancs_notification.cpp -------------------------------------------------------------------------------- /ancs_notification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/ancs_notification.h -------------------------------------------------------------------------------- /ancs_notification_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/ancs_notification_list.cpp -------------------------------------------------------------------------------- /ancs_notification_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/ancs_notification_list.h -------------------------------------------------------------------------------- /ancs_notification_source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/ancs_notification_source.cpp -------------------------------------------------------------------------------- /ancs_notification_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/ancs_notification_source.h -------------------------------------------------------------------------------- /examples/ancs_lcd/ancs_lcd.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/examples/ancs_lcd/ancs_lcd.ino -------------------------------------------------------------------------------- /linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/linked_list.h -------------------------------------------------------------------------------- /my_services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/my_services.h -------------------------------------------------------------------------------- /notif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/notif.cpp -------------------------------------------------------------------------------- /notif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/notif.h -------------------------------------------------------------------------------- /nrf8001_ancs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/nrf8001_ancs.xml -------------------------------------------------------------------------------- /pack_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/pack_lib.h -------------------------------------------------------------------------------- /services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/services.h -------------------------------------------------------------------------------- /services_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/services_lock.h -------------------------------------------------------------------------------- /ublue_setup.gen.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/ublue_setup.gen.out.txt -------------------------------------------------------------------------------- /utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/utilities.cpp -------------------------------------------------------------------------------- /utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotastic/ANCS-Library/HEAD/utilities.h --------------------------------------------------------------------------------