├── LICENSE ├── README.md ├── examples ├── 101_GettingStarted │ └── 101_GettingStarted.ino ├── Basic │ ├── adc_read │ │ └── adc_read.ino │ ├── digital_read_write │ │ └── digital_read_write.ino │ ├── i2c_example │ │ └── i2c_example.ino │ ├── i2c_scanner │ │ └── i2c_scanner.ino │ ├── onboard_led │ │ └── onboard_led.ino │ └── pwm_write │ │ └── pwm_write.ino ├── Drive │ ├── c6_drive_demo │ │ └── c6_drive_demo.ino │ └── servo_control │ │ └── servo_control.ino ├── LightSensing │ ├── brightness_autodimming │ │ └── brightness_autodimming.ino │ ├── proximity_depth_gesture │ │ └── proximity_depth_gesture.ino │ └── proximity_detector │ │ └── proximity_detector.ino ├── MotionSensing │ ├── acceleration_sensing │ │ └── acceleration_sensing.ino │ ├── activity_tracking │ │ └── activity_tracking.ino │ ├── compass_sensing │ │ └── compass_sensing.ino │ ├── gyro_sensing │ │ └── gyro_sensing.ino │ ├── roll_pitch_yaw_sensing │ │ └── roll_pitch_yaw_sensing.ino │ ├── shake_detector │ │ └── shake_detector.ino │ ├── state_sensing │ │ └── state_sensing.ino │ ├── step_counter │ │ └── step_counter.ino │ └── tap_detect │ │ └── tap_detect.ino ├── Sleep │ ├── brightness_interrupt_wakeup │ │ └── brightness_interrupt_wakeup.ino │ ├── darkness_interrupt_wakeup │ │ └── darkness_interrupt_wakeup.ino │ ├── motion_timer_wakeup │ │ └── motion_timer_wakeup.ino │ ├── proximity_interrupt_wakeup │ │ └── proximity_interrupt_wakeup.ino │ ├── proximity_timer_eep_wakeup │ │ └── proximity_timer_eep_wakeup.ino │ └── tap_interrupt_wakeup │ │ └── tap_interrupt_wakeup.ino └── Wireless │ ├── ble_example │ └── ble_example.ino │ ├── espnow_proximity_remote │ └── espnow_proximity_remote.ino │ ├── espnow_tilt_remote │ └── espnow_tilt_remote.ino │ ├── microlink_demo │ └── microlink_demo.ino │ └── web_server │ └── web_server.ino ├── hardware ├── CodeCell C3 Light │ ├── CodeCell C3 Light 3D-File.step │ ├── CodeCell C3 Light Pin Map.png │ ├── CodeCell C3 Light Schematics.pdf │ └── codecell drawing.png ├── CodeCell C3 │ ├── CodeCell C3 Pin Map.png │ ├── CodeCell Schematics.pdf │ ├── CodeCell.step │ └── codecell drawing.png ├── CodeCell C6 Drive │ ├── CodeCell C6 Drive 3D-File.step │ ├── CodeCell C6 Drive Drawing.png │ ├── CodeCell C6 Drive Pin Map.png │ └── CodeCell C6 Drive Schematics.pdf └── CodeCell C6 │ ├── CodeCell C6 3D-File.step │ ├── CodeCell C6 Drawing.png │ ├── CodeCell C6 Pin Map.png │ └── CodeCell C6 Schematics.pdf ├── library.properties └── src ├── BNO085.cpp ├── BNO085.h ├── CodeCell.cpp ├── CodeCell.h ├── NOTICE.txt ├── sh2.c ├── sh2.h ├── sh2_SensorValue.c ├── sh2_SensorValue.h ├── sh2_err.h ├── sh2_hal.h ├── sh2_util.c ├── sh2_util.h ├── shtp.c └── shtp.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/README.md -------------------------------------------------------------------------------- /examples/101_GettingStarted/101_GettingStarted.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/101_GettingStarted/101_GettingStarted.ino -------------------------------------------------------------------------------- /examples/Basic/adc_read/adc_read.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/Basic/adc_read/adc_read.ino -------------------------------------------------------------------------------- /examples/Basic/digital_read_write/digital_read_write.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/Basic/digital_read_write/digital_read_write.ino -------------------------------------------------------------------------------- /examples/Basic/i2c_example/i2c_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/Basic/i2c_example/i2c_example.ino -------------------------------------------------------------------------------- /examples/Basic/i2c_scanner/i2c_scanner.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/Basic/i2c_scanner/i2c_scanner.ino -------------------------------------------------------------------------------- /examples/Basic/onboard_led/onboard_led.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/Basic/onboard_led/onboard_led.ino -------------------------------------------------------------------------------- /examples/Basic/pwm_write/pwm_write.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/Basic/pwm_write/pwm_write.ino -------------------------------------------------------------------------------- /examples/Drive/c6_drive_demo/c6_drive_demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/Drive/c6_drive_demo/c6_drive_demo.ino -------------------------------------------------------------------------------- /examples/Drive/servo_control/servo_control.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/Drive/servo_control/servo_control.ino -------------------------------------------------------------------------------- /examples/LightSensing/brightness_autodimming/brightness_autodimming.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/LightSensing/brightness_autodimming/brightness_autodimming.ino -------------------------------------------------------------------------------- /examples/LightSensing/proximity_depth_gesture/proximity_depth_gesture.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/LightSensing/proximity_depth_gesture/proximity_depth_gesture.ino -------------------------------------------------------------------------------- /examples/LightSensing/proximity_detector/proximity_detector.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/LightSensing/proximity_detector/proximity_detector.ino -------------------------------------------------------------------------------- /examples/MotionSensing/acceleration_sensing/acceleration_sensing.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/MotionSensing/acceleration_sensing/acceleration_sensing.ino -------------------------------------------------------------------------------- /examples/MotionSensing/activity_tracking/activity_tracking.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/MotionSensing/activity_tracking/activity_tracking.ino -------------------------------------------------------------------------------- /examples/MotionSensing/compass_sensing/compass_sensing.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/MotionSensing/compass_sensing/compass_sensing.ino -------------------------------------------------------------------------------- /examples/MotionSensing/gyro_sensing/gyro_sensing.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/MotionSensing/gyro_sensing/gyro_sensing.ino -------------------------------------------------------------------------------- /examples/MotionSensing/roll_pitch_yaw_sensing/roll_pitch_yaw_sensing.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/MotionSensing/roll_pitch_yaw_sensing/roll_pitch_yaw_sensing.ino -------------------------------------------------------------------------------- /examples/MotionSensing/shake_detector/shake_detector.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/MotionSensing/shake_detector/shake_detector.ino -------------------------------------------------------------------------------- /examples/MotionSensing/state_sensing/state_sensing.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/MotionSensing/state_sensing/state_sensing.ino -------------------------------------------------------------------------------- /examples/MotionSensing/step_counter/step_counter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/MotionSensing/step_counter/step_counter.ino -------------------------------------------------------------------------------- /examples/MotionSensing/tap_detect/tap_detect.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/MotionSensing/tap_detect/tap_detect.ino -------------------------------------------------------------------------------- /examples/Sleep/brightness_interrupt_wakeup/brightness_interrupt_wakeup.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/Sleep/brightness_interrupt_wakeup/brightness_interrupt_wakeup.ino -------------------------------------------------------------------------------- /examples/Sleep/darkness_interrupt_wakeup/darkness_interrupt_wakeup.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/Sleep/darkness_interrupt_wakeup/darkness_interrupt_wakeup.ino -------------------------------------------------------------------------------- /examples/Sleep/motion_timer_wakeup/motion_timer_wakeup.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/Sleep/motion_timer_wakeup/motion_timer_wakeup.ino -------------------------------------------------------------------------------- /examples/Sleep/proximity_interrupt_wakeup/proximity_interrupt_wakeup.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/Sleep/proximity_interrupt_wakeup/proximity_interrupt_wakeup.ino -------------------------------------------------------------------------------- /examples/Sleep/proximity_timer_eep_wakeup/proximity_timer_eep_wakeup.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/Sleep/proximity_timer_eep_wakeup/proximity_timer_eep_wakeup.ino -------------------------------------------------------------------------------- /examples/Sleep/tap_interrupt_wakeup/tap_interrupt_wakeup.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/Sleep/tap_interrupt_wakeup/tap_interrupt_wakeup.ino -------------------------------------------------------------------------------- /examples/Wireless/ble_example/ble_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/Wireless/ble_example/ble_example.ino -------------------------------------------------------------------------------- /examples/Wireless/espnow_proximity_remote/espnow_proximity_remote.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/Wireless/espnow_proximity_remote/espnow_proximity_remote.ino -------------------------------------------------------------------------------- /examples/Wireless/espnow_tilt_remote/espnow_tilt_remote.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/Wireless/espnow_tilt_remote/espnow_tilt_remote.ino -------------------------------------------------------------------------------- /examples/Wireless/microlink_demo/microlink_demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/Wireless/microlink_demo/microlink_demo.ino -------------------------------------------------------------------------------- /examples/Wireless/web_server/web_server.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/examples/Wireless/web_server/web_server.ino -------------------------------------------------------------------------------- /hardware/CodeCell C3 Light/CodeCell C3 Light 3D-File.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/hardware/CodeCell C3 Light/CodeCell C3 Light 3D-File.step -------------------------------------------------------------------------------- /hardware/CodeCell C3 Light/CodeCell C3 Light Pin Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/hardware/CodeCell C3 Light/CodeCell C3 Light Pin Map.png -------------------------------------------------------------------------------- /hardware/CodeCell C3 Light/CodeCell C3 Light Schematics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/hardware/CodeCell C3 Light/CodeCell C3 Light Schematics.pdf -------------------------------------------------------------------------------- /hardware/CodeCell C3 Light/codecell drawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/hardware/CodeCell C3 Light/codecell drawing.png -------------------------------------------------------------------------------- /hardware/CodeCell C3/CodeCell C3 Pin Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/hardware/CodeCell C3/CodeCell C3 Pin Map.png -------------------------------------------------------------------------------- /hardware/CodeCell C3/CodeCell Schematics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/hardware/CodeCell C3/CodeCell Schematics.pdf -------------------------------------------------------------------------------- /hardware/CodeCell C3/CodeCell.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/hardware/CodeCell C3/CodeCell.step -------------------------------------------------------------------------------- /hardware/CodeCell C3/codecell drawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/hardware/CodeCell C3/codecell drawing.png -------------------------------------------------------------------------------- /hardware/CodeCell C6 Drive/CodeCell C6 Drive 3D-File.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/hardware/CodeCell C6 Drive/CodeCell C6 Drive 3D-File.step -------------------------------------------------------------------------------- /hardware/CodeCell C6 Drive/CodeCell C6 Drive Drawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/hardware/CodeCell C6 Drive/CodeCell C6 Drive Drawing.png -------------------------------------------------------------------------------- /hardware/CodeCell C6 Drive/CodeCell C6 Drive Pin Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/hardware/CodeCell C6 Drive/CodeCell C6 Drive Pin Map.png -------------------------------------------------------------------------------- /hardware/CodeCell C6 Drive/CodeCell C6 Drive Schematics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/hardware/CodeCell C6 Drive/CodeCell C6 Drive Schematics.pdf -------------------------------------------------------------------------------- /hardware/CodeCell C6/CodeCell C6 3D-File.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/hardware/CodeCell C6/CodeCell C6 3D-File.step -------------------------------------------------------------------------------- /hardware/CodeCell C6/CodeCell C6 Drawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/hardware/CodeCell C6/CodeCell C6 Drawing.png -------------------------------------------------------------------------------- /hardware/CodeCell C6/CodeCell C6 Pin Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/hardware/CodeCell C6/CodeCell C6 Pin Map.png -------------------------------------------------------------------------------- /hardware/CodeCell C6/CodeCell C6 Schematics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/hardware/CodeCell C6/CodeCell C6 Schematics.pdf -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/library.properties -------------------------------------------------------------------------------- /src/BNO085.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/src/BNO085.cpp -------------------------------------------------------------------------------- /src/BNO085.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/src/BNO085.h -------------------------------------------------------------------------------- /src/CodeCell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/src/CodeCell.cpp -------------------------------------------------------------------------------- /src/CodeCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/src/CodeCell.h -------------------------------------------------------------------------------- /src/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/src/NOTICE.txt -------------------------------------------------------------------------------- /src/sh2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/src/sh2.c -------------------------------------------------------------------------------- /src/sh2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/src/sh2.h -------------------------------------------------------------------------------- /src/sh2_SensorValue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/src/sh2_SensorValue.c -------------------------------------------------------------------------------- /src/sh2_SensorValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/src/sh2_SensorValue.h -------------------------------------------------------------------------------- /src/sh2_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/src/sh2_err.h -------------------------------------------------------------------------------- /src/sh2_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/src/sh2_hal.h -------------------------------------------------------------------------------- /src/sh2_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/src/sh2_util.c -------------------------------------------------------------------------------- /src/sh2_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/src/sh2_util.h -------------------------------------------------------------------------------- /src/shtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/src/shtp.c -------------------------------------------------------------------------------- /src/shtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbotsio/CodeCell/HEAD/src/shtp.h --------------------------------------------------------------------------------