├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── conveyor-design-files ├── 3d-stl-files │ ├── conveyor-back-access-port-cover.stl │ ├── conveyor-back-left.stl │ ├── conveyor-back-one-piece.stl │ ├── conveyor-back-right.stl │ ├── conveyor-belt-pully-v2.stl │ ├── conveyor-belt-pully.stl │ ├── conveyor-center.stl │ ├── conveyor-drive-belt-cover.stl │ ├── conveyor-front-left.stl │ ├── conveyor-front-one-piece.stl │ ├── conveyor-front-right.stl │ ├── conveyor-leg.stl │ ├── conveyor-shortleg.scad │ ├── conveyor-shortleg.stl │ ├── conveyor-switch-cover.stl │ └── deeplens-attachment.stl ├── README.md ├── assembly-instructions │ ├── 3DPRINTING.md │ ├── BOM.md │ ├── ELECTRONICS.md │ ├── FINALASSEMBLY.md │ ├── HEATSETINSERTS.md │ ├── PULLEYS.md │ ├── README.md │ └── images │ │ ├── 608_install.jpg │ │ ├── back_assembled.jpg │ │ ├── center_install.jpg │ │ ├── hall_effect_install.jpg │ │ ├── hall_effect_pcb_wiring.jpg │ │ ├── heat_set_back.jpg │ │ ├── heat_set_back_full.jpg │ │ ├── heat_set_center.jpg │ │ ├── heat_set_front_full.jpg │ │ ├── heat_set_pully.jpg │ │ ├── leg_install.jpg │ │ ├── magnet_direction.jpg │ │ ├── pcb_front.jpg │ │ ├── pcb_installed.jpg │ │ ├── pcb_layout.jpg │ │ ├── pcb_top.jpg │ │ ├── power_cover_pcb_wiring.jpg │ │ ├── pulley_axle.jpg │ │ ├── pulley_install_hall_effect_side.jpg │ │ ├── pulley_magnets.jpg │ │ ├── pulley_set_screw.jpg │ │ ├── pulley_washers.jpg │ │ ├── stepper_install_back.jpg │ │ ├── stepper_install_front.jpg │ │ ├── stepper_pcb_wiring.jpg │ │ ├── wiring_hall_effect.jpg │ │ ├── wiring_hall_effect_pinout.jpg │ │ ├── wiring_power_cover.jpg │ │ ├── wiring_rgb_led.png │ │ ├── wiring_routing.jpg │ │ └── wiring_stepper_motor.jpg └── pcb-files │ ├── conveyor-pcb.brd │ └── conveyor-pcb.sch └── conveyor-src ├── README.md ├── config └── configure.sh └── conveyor_code ├── README.md ├── aws_conveyor_shadow.c ├── aws_conveyor_telemetry.c ├── conveyor_include ├── aws_conveyor_shadow.h ├── aws_conveyor_shared.h ├── aws_conveyor_telemetry.h └── ws2812.h ├── flow-diagram.png ├── main.c └── ws2812.c /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/README.md -------------------------------------------------------------------------------- /conveyor-design-files/3d-stl-files/conveyor-back-access-port-cover.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/3d-stl-files/conveyor-back-access-port-cover.stl -------------------------------------------------------------------------------- /conveyor-design-files/3d-stl-files/conveyor-back-left.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/3d-stl-files/conveyor-back-left.stl -------------------------------------------------------------------------------- /conveyor-design-files/3d-stl-files/conveyor-back-one-piece.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/3d-stl-files/conveyor-back-one-piece.stl -------------------------------------------------------------------------------- /conveyor-design-files/3d-stl-files/conveyor-back-right.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/3d-stl-files/conveyor-back-right.stl -------------------------------------------------------------------------------- /conveyor-design-files/3d-stl-files/conveyor-belt-pully-v2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/3d-stl-files/conveyor-belt-pully-v2.stl -------------------------------------------------------------------------------- /conveyor-design-files/3d-stl-files/conveyor-belt-pully.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/3d-stl-files/conveyor-belt-pully.stl -------------------------------------------------------------------------------- /conveyor-design-files/3d-stl-files/conveyor-center.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/3d-stl-files/conveyor-center.stl -------------------------------------------------------------------------------- /conveyor-design-files/3d-stl-files/conveyor-drive-belt-cover.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/3d-stl-files/conveyor-drive-belt-cover.stl -------------------------------------------------------------------------------- /conveyor-design-files/3d-stl-files/conveyor-front-left.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/3d-stl-files/conveyor-front-left.stl -------------------------------------------------------------------------------- /conveyor-design-files/3d-stl-files/conveyor-front-one-piece.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/3d-stl-files/conveyor-front-one-piece.stl -------------------------------------------------------------------------------- /conveyor-design-files/3d-stl-files/conveyor-front-right.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/3d-stl-files/conveyor-front-right.stl -------------------------------------------------------------------------------- /conveyor-design-files/3d-stl-files/conveyor-leg.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/3d-stl-files/conveyor-leg.stl -------------------------------------------------------------------------------- /conveyor-design-files/3d-stl-files/conveyor-shortleg.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/3d-stl-files/conveyor-shortleg.scad -------------------------------------------------------------------------------- /conveyor-design-files/3d-stl-files/conveyor-shortleg.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/3d-stl-files/conveyor-shortleg.stl -------------------------------------------------------------------------------- /conveyor-design-files/3d-stl-files/conveyor-switch-cover.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/3d-stl-files/conveyor-switch-cover.stl -------------------------------------------------------------------------------- /conveyor-design-files/3d-stl-files/deeplens-attachment.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/3d-stl-files/deeplens-attachment.stl -------------------------------------------------------------------------------- /conveyor-design-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/README.md -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/3DPRINTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/3DPRINTING.md -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/BOM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/BOM.md -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/ELECTRONICS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/ELECTRONICS.md -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/FINALASSEMBLY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/FINALASSEMBLY.md -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/HEATSETINSERTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/HEATSETINSERTS.md -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/PULLEYS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/PULLEYS.md -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/README.md -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/608_install.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/608_install.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/back_assembled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/back_assembled.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/center_install.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/center_install.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/hall_effect_install.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/hall_effect_install.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/hall_effect_pcb_wiring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/hall_effect_pcb_wiring.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/heat_set_back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/heat_set_back.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/heat_set_back_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/heat_set_back_full.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/heat_set_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/heat_set_center.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/heat_set_front_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/heat_set_front_full.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/heat_set_pully.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/heat_set_pully.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/leg_install.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/leg_install.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/magnet_direction.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/magnet_direction.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/pcb_front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/pcb_front.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/pcb_installed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/pcb_installed.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/pcb_layout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/pcb_layout.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/pcb_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/pcb_top.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/power_cover_pcb_wiring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/power_cover_pcb_wiring.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/pulley_axle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/pulley_axle.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/pulley_install_hall_effect_side.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/pulley_install_hall_effect_side.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/pulley_magnets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/pulley_magnets.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/pulley_set_screw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/pulley_set_screw.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/pulley_washers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/pulley_washers.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/stepper_install_back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/stepper_install_back.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/stepper_install_front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/stepper_install_front.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/stepper_pcb_wiring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/stepper_pcb_wiring.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/wiring_hall_effect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/wiring_hall_effect.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/wiring_hall_effect_pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/wiring_hall_effect_pinout.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/wiring_power_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/wiring_power_cover.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/wiring_rgb_led.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/wiring_rgb_led.png -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/wiring_routing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/wiring_routing.jpg -------------------------------------------------------------------------------- /conveyor-design-files/assembly-instructions/images/wiring_stepper_motor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/assembly-instructions/images/wiring_stepper_motor.jpg -------------------------------------------------------------------------------- /conveyor-design-files/pcb-files/conveyor-pcb.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/pcb-files/conveyor-pcb.brd -------------------------------------------------------------------------------- /conveyor-design-files/pcb-files/conveyor-pcb.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-design-files/pcb-files/conveyor-pcb.sch -------------------------------------------------------------------------------- /conveyor-src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-src/README.md -------------------------------------------------------------------------------- /conveyor-src/config/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-src/config/configure.sh -------------------------------------------------------------------------------- /conveyor-src/conveyor_code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-src/conveyor_code/README.md -------------------------------------------------------------------------------- /conveyor-src/conveyor_code/aws_conveyor_shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-src/conveyor_code/aws_conveyor_shadow.c -------------------------------------------------------------------------------- /conveyor-src/conveyor_code/aws_conveyor_telemetry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-src/conveyor_code/aws_conveyor_telemetry.c -------------------------------------------------------------------------------- /conveyor-src/conveyor_code/conveyor_include/aws_conveyor_shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-src/conveyor_code/conveyor_include/aws_conveyor_shadow.h -------------------------------------------------------------------------------- /conveyor-src/conveyor_code/conveyor_include/aws_conveyor_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-src/conveyor_code/conveyor_include/aws_conveyor_shared.h -------------------------------------------------------------------------------- /conveyor-src/conveyor_code/conveyor_include/aws_conveyor_telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-src/conveyor_code/conveyor_include/aws_conveyor_telemetry.h -------------------------------------------------------------------------------- /conveyor-src/conveyor_code/conveyor_include/ws2812.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-src/conveyor_code/conveyor_include/ws2812.h -------------------------------------------------------------------------------- /conveyor-src/conveyor_code/flow-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-src/conveyor_code/flow-diagram.png -------------------------------------------------------------------------------- /conveyor-src/conveyor_code/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-src/conveyor_code/main.c -------------------------------------------------------------------------------- /conveyor-src/conveyor_code/ws2812.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-freertos-iot-conveyor-belt/HEAD/conveyor-src/conveyor_code/ws2812.c --------------------------------------------------------------------------------