├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── NOTICE ├── README.md ├── docs ├── _static │ ├── images │ │ ├── app_based_pairing_screenshot_1.png │ │ ├── app_based_pairing_screenshot_2.png │ │ ├── app_based_pairing_screenshot_3.png │ │ ├── app_based_pairing_screenshot_4.png │ │ ├── app_based_pairing_screenshot_5.png │ │ ├── app_based_pairing_screenshot_6.png │ │ ├── app_based_unpairing_screenshot_1.png │ │ ├── app_based_unpairing_screenshot_2.png │ │ ├── button_pinout.png │ │ ├── color_cycler_components.png │ │ ├── color_cycler_gadget.jpg │ │ ├── colorcycler_skill_creation_screenshot_1.png │ │ ├── colorcycler_skill_creation_screenshot_10.png │ │ ├── colorcycler_skill_creation_screenshot_11.png │ │ ├── colorcycler_skill_creation_screenshot_12.png │ │ ├── colorcycler_skill_creation_screenshot_13.png │ │ ├── colorcycler_skill_creation_screenshot_14.png │ │ ├── colorcycler_skill_creation_screenshot_15.png │ │ ├── colorcycler_skill_creation_screenshot_16.png │ │ ├── colorcycler_skill_creation_screenshot_17.png │ │ ├── colorcycler_skill_creation_screenshot_2.png │ │ ├── colorcycler_skill_creation_screenshot_3.png │ │ ├── colorcycler_skill_creation_screenshot_4.png │ │ ├── colorcycler_skill_creation_screenshot_5.png │ │ ├── colorcycler_skill_creation_screenshot_6.png │ │ ├── colorcycler_skill_creation_screenshot_7.png │ │ ├── colorcycler_skill_creation_screenshot_8.png │ │ ├── colorcycler_skill_creation_screenshot_9.png │ │ ├── colorcycler_skill_lambda_screenshot_1.png │ │ ├── colorcycler_skill_lambda_screenshot_2.png │ │ ├── colorcycler_skill_lambda_screenshot_3.png │ │ ├── colorcycler_skill_lambda_screenshot_4.png │ │ ├── colorcycler_skill_lambda_screenshot_5.png │ │ ├── colorcycler_skill_test_screenshot_1.png │ │ ├── colorcycler_skill_test_screenshot_2.png │ │ ├── colorcycler_skill_test_screenshot_3.png │ │ ├── led_button_to_rpi.png │ │ ├── led_to_rpi.png │ │ ├── notification_flag_template.png │ │ ├── notification_gadget.png │ │ ├── pi_cli_screenshot_0.png │ │ ├── pi_cli_screenshot_1.png │ │ ├── pi_cli_screenshot_2.png │ │ ├── pi_cli_screenshot_3.png │ │ ├── pi_cli_screenshot_4.png │ │ ├── pi_cli_screenshot_5.png │ │ ├── pi_cli_screenshot_6.png │ │ ├── pi_cli_screenshot_7.png │ │ ├── pi_desktop_disable_bt_menu.png │ │ ├── pi_desktop_error_popup.png │ │ ├── pi_led_hardware.png │ │ ├── pi_servo_hardware.png │ │ ├── register_gadget_screenshot_1.png │ │ ├── register_gadget_screenshot_2.png │ │ ├── register_gadget_screenshot_3.png │ │ ├── register_gadget_screenshot_4.png │ │ ├── register_gadget_screenshot_5.png │ │ ├── register_gadget_screenshot_6.png │ │ ├── rgb_led_pinout.png │ │ ├── screen_based_pairing_screenshot_1.png │ │ ├── screen_based_pairing_screenshot_2.png │ │ ├── screen_based_pairing_screenshot_3.png │ │ ├── screen_based_pairing_screenshot_4.png │ │ ├── screen_based_unpairing_screenshot_1.png │ │ ├── screen_based_unpairing_screenshot_2.png │ │ ├── servo_to_rpi.png │ │ ├── timer_gadget.png │ │ └── timer_template.png │ └── pdfs │ │ ├── Notification-Flag-Template.pdf │ │ └── Timer-Template.pdf ├── build.sh ├── build │ ├── .buildinfo │ ├── _images │ │ ├── app_based_pairing_screenshot_1.png │ │ ├── app_based_pairing_screenshot_2.png │ │ ├── app_based_pairing_screenshot_3.png │ │ ├── app_based_pairing_screenshot_4.png │ │ ├── app_based_pairing_screenshot_5.png │ │ ├── app_based_pairing_screenshot_6.png │ │ ├── app_based_unpairing_screenshot_1.png │ │ ├── app_based_unpairing_screenshot_2.png │ │ ├── button_pinout.png │ │ ├── color_cycler_components.png │ │ ├── color_cycler_gadget.jpg │ │ ├── colorcycler_skill_creation_screenshot_1.png │ │ ├── colorcycler_skill_creation_screenshot_10.png │ │ ├── colorcycler_skill_creation_screenshot_11.png │ │ ├── colorcycler_skill_creation_screenshot_12.png │ │ ├── colorcycler_skill_creation_screenshot_13.png │ │ ├── colorcycler_skill_creation_screenshot_14.png │ │ ├── colorcycler_skill_creation_screenshot_15.png │ │ ├── colorcycler_skill_creation_screenshot_16.png │ │ ├── colorcycler_skill_creation_screenshot_17.png │ │ ├── colorcycler_skill_creation_screenshot_2.png │ │ ├── colorcycler_skill_creation_screenshot_3.png │ │ ├── colorcycler_skill_creation_screenshot_4.png │ │ ├── colorcycler_skill_creation_screenshot_5.png │ │ ├── colorcycler_skill_creation_screenshot_6.png │ │ ├── colorcycler_skill_creation_screenshot_7.png │ │ ├── colorcycler_skill_creation_screenshot_8.png │ │ ├── colorcycler_skill_creation_screenshot_9.png │ │ ├── colorcycler_skill_lambda_screenshot_1.png │ │ ├── colorcycler_skill_lambda_screenshot_2.png │ │ ├── colorcycler_skill_lambda_screenshot_3.png │ │ ├── colorcycler_skill_lambda_screenshot_4.png │ │ ├── colorcycler_skill_lambda_screenshot_5.png │ │ ├── colorcycler_skill_test_screenshot_1.png │ │ ├── colorcycler_skill_test_screenshot_2.png │ │ ├── colorcycler_skill_test_screenshot_3.png │ │ ├── led_button_to_rpi.png │ │ ├── led_to_rpi.png │ │ ├── notification_flag_template.png │ │ ├── notification_gadget.png │ │ ├── pi_cli_screenshot_0.png │ │ ├── pi_cli_screenshot_1.png │ │ ├── pi_cli_screenshot_2.png │ │ ├── pi_cli_screenshot_3.png │ │ ├── pi_cli_screenshot_4.png │ │ ├── pi_cli_screenshot_5.png │ │ ├── pi_cli_screenshot_6.png │ │ ├── pi_cli_screenshot_7.png │ │ ├── pi_desktop_disable_bt_menu.png │ │ ├── pi_led_hardware.png │ │ ├── pi_servo_hardware.png │ │ ├── register_gadget_screenshot_1.png │ │ ├── register_gadget_screenshot_2.png │ │ ├── register_gadget_screenshot_3.png │ │ ├── register_gadget_screenshot_4.png │ │ ├── register_gadget_screenshot_5.png │ │ ├── register_gadget_screenshot_6.png │ │ ├── rgb_led_pinout.png │ │ ├── screen_based_pairing_screenshot_1.png │ │ ├── screen_based_pairing_screenshot_2.png │ │ ├── screen_based_pairing_screenshot_3.png │ │ ├── screen_based_pairing_screenshot_4.png │ │ ├── screen_based_unpairing_screenshot_1.png │ │ ├── screen_based_unpairing_screenshot_2.png │ │ ├── servo_to_rpi.png │ │ ├── timer_gadget.png │ │ └── timer_template.png │ ├── _modules │ │ ├── agt │ │ │ └── alexa_gadget.html │ │ └── index.html │ ├── _sources │ │ ├── api.rst.txt │ │ ├── color_cycler.rst.txt │ │ ├── index.rst.txt │ │ ├── kitchen_sink.rst.txt │ │ ├── notification.rst.txt │ │ ├── overview.rst.txt │ │ ├── timer.rst.txt │ │ └── wakeword.rst.txt │ ├── _static │ │ ├── basic.css │ │ ├── css │ │ │ ├── badge_only.css │ │ │ └── theme.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── fonts │ │ │ ├── Inconsolata-Bold.ttf │ │ │ ├── Inconsolata-Regular.ttf │ │ │ ├── Lato-Bold.ttf │ │ │ ├── Lato-Regular.ttf │ │ │ ├── RobotoSlab-Bold.ttf │ │ │ ├── RobotoSlab-Regular.ttf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── images │ │ │ ├── app_based_pairing_screenshot_1.png │ │ │ ├── app_based_pairing_screenshot_2.png │ │ │ ├── app_based_pairing_screenshot_3.png │ │ │ ├── app_based_pairing_screenshot_4.png │ │ │ ├── app_based_pairing_screenshot_5.png │ │ │ ├── app_based_pairing_screenshot_6.png │ │ │ ├── app_based_unpairing_screenshot_1.png │ │ │ ├── app_based_unpairing_screenshot_2.png │ │ │ ├── app_based_unpairing_screenshot_3.png │ │ │ ├── button_pinout.png │ │ │ ├── color_cycler_components.png │ │ │ ├── color_cycler_gadget.jpg │ │ │ ├── color_cycler_gadget.png │ │ │ ├── colorcycler_skill_creation_screenshot_1.png │ │ │ ├── colorcycler_skill_creation_screenshot_10.png │ │ │ ├── colorcycler_skill_creation_screenshot_11.png │ │ │ ├── colorcycler_skill_creation_screenshot_12.png │ │ │ ├── colorcycler_skill_creation_screenshot_13.png │ │ │ ├── colorcycler_skill_creation_screenshot_14.png │ │ │ ├── colorcycler_skill_creation_screenshot_15.png │ │ │ ├── colorcycler_skill_creation_screenshot_16.png │ │ │ ├── colorcycler_skill_creation_screenshot_17.png │ │ │ ├── colorcycler_skill_creation_screenshot_2.png │ │ │ ├── colorcycler_skill_creation_screenshot_3.png │ │ │ ├── colorcycler_skill_creation_screenshot_4.png │ │ │ ├── colorcycler_skill_creation_screenshot_5.png │ │ │ ├── colorcycler_skill_creation_screenshot_6.png │ │ │ ├── colorcycler_skill_creation_screenshot_7.png │ │ │ ├── colorcycler_skill_creation_screenshot_8.png │ │ │ ├── colorcycler_skill_creation_screenshot_9.png │ │ │ ├── colorcycler_skill_lambda_screenshot_1.png │ │ │ ├── colorcycler_skill_lambda_screenshot_2.png │ │ │ ├── colorcycler_skill_lambda_screenshot_3.png │ │ │ ├── colorcycler_skill_lambda_screenshot_4.png │ │ │ ├── colorcycler_skill_lambda_screenshot_5.png │ │ │ ├── colorcycler_skill_test_screenshot_1.png │ │ │ ├── colorcycler_skill_test_screenshot_2.png │ │ │ ├── colorcycler_skill_test_screenshot_3.png │ │ │ ├── led_button_to_rpi.png │ │ │ ├── led_to_rpi.png │ │ │ ├── notification_flag_template.png │ │ │ ├── notification_gadget.png │ │ │ ├── pi_cli_screenshot_0.png │ │ │ ├── pi_cli_screenshot_1.png │ │ │ ├── pi_cli_screenshot_2.png │ │ │ ├── pi_cli_screenshot_3.png │ │ │ ├── pi_cli_screenshot_4.png │ │ │ ├── pi_cli_screenshot_5.png │ │ │ ├── pi_cli_screenshot_6.png │ │ │ ├── pi_cli_screenshot_7.png │ │ │ ├── pi_desktop_disable_bt_menu.png │ │ │ ├── pi_desktop_error_popup.png │ │ │ ├── pi_led_hardware.png │ │ │ ├── pi_servo_hardware.png │ │ │ ├── register_gadget_screenshot_1.png │ │ │ ├── register_gadget_screenshot_2.png │ │ │ ├── register_gadget_screenshot_3.png │ │ │ ├── register_gadget_screenshot_4.png │ │ │ ├── register_gadget_screenshot_5.png │ │ │ ├── register_gadget_screenshot_6.png │ │ │ ├── rgb_led_pinout.png │ │ │ ├── screen_based_pairing_screenshot_1.png │ │ │ ├── screen_based_pairing_screenshot_2.png │ │ │ ├── screen_based_pairing_screenshot_3.png │ │ │ ├── screen_based_pairing_screenshot_4.png │ │ │ ├── screen_based_unpairing_screenshot_1.png │ │ │ ├── screen_based_unpairing_screenshot_2.png │ │ │ ├── servo_to_rpi.png │ │ │ ├── status_gauge_gadget.png │ │ │ ├── timer_gadget.png │ │ │ ├── timer_template.png │ │ │ └── troubleshooting_screenshot_1.png │ │ ├── jquery-3.4.1.js │ │ ├── jquery.js │ │ ├── js │ │ │ ├── modernizr.min.js │ │ │ └── theme.js │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── pdfs │ │ │ ├── Notification-Flag-Template.pdf │ │ │ └── Timer-Template.pdf │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── underscore-1.3.1.js │ │ └── underscore.js │ ├── api.html │ ├── color_cycler.html │ ├── genindex.html │ ├── index.html │ ├── kitchen_sink.html │ ├── notification.html │ ├── objects.inv │ ├── overview.html │ ├── py-modindex.html │ ├── search.html │ ├── searchindex.js │ ├── timer.html │ └── wakeword.html └── source │ ├── _static │ ├── images │ │ ├── app_based_pairing_screenshot_1.png │ │ ├── app_based_pairing_screenshot_2.png │ │ ├── app_based_pairing_screenshot_3.png │ │ ├── app_based_pairing_screenshot_4.png │ │ ├── app_based_pairing_screenshot_5.png │ │ ├── app_based_pairing_screenshot_6.png │ │ ├── app_based_unpairing_screenshot_1.png │ │ ├── app_based_unpairing_screenshot_2.png │ │ ├── app_based_unpairing_screenshot_3.png │ │ ├── button_pinout.png │ │ ├── color_cycler_components.png │ │ ├── color_cycler_gadget.jpg │ │ ├── color_cycler_gadget.png │ │ ├── colorcycler_skill_creation_screenshot_1.png │ │ ├── colorcycler_skill_creation_screenshot_10.png │ │ ├── colorcycler_skill_creation_screenshot_11.png │ │ ├── colorcycler_skill_creation_screenshot_12.png │ │ ├── colorcycler_skill_creation_screenshot_13.png │ │ ├── colorcycler_skill_creation_screenshot_14.png │ │ ├── colorcycler_skill_creation_screenshot_15.png │ │ ├── colorcycler_skill_creation_screenshot_16.png │ │ ├── colorcycler_skill_creation_screenshot_17.png │ │ ├── colorcycler_skill_creation_screenshot_2.png │ │ ├── colorcycler_skill_creation_screenshot_3.png │ │ ├── colorcycler_skill_creation_screenshot_4.png │ │ ├── colorcycler_skill_creation_screenshot_5.png │ │ ├── colorcycler_skill_creation_screenshot_6.png │ │ ├── colorcycler_skill_creation_screenshot_7.png │ │ ├── colorcycler_skill_creation_screenshot_8.png │ │ ├── colorcycler_skill_creation_screenshot_9.png │ │ ├── colorcycler_skill_lambda_screenshot_1.png │ │ ├── colorcycler_skill_lambda_screenshot_2.png │ │ ├── colorcycler_skill_lambda_screenshot_3.png │ │ ├── colorcycler_skill_lambda_screenshot_4.png │ │ ├── colorcycler_skill_lambda_screenshot_5.png │ │ ├── colorcycler_skill_test_screenshot_1.png │ │ ├── colorcycler_skill_test_screenshot_2.png │ │ ├── colorcycler_skill_test_screenshot_3.png │ │ ├── led_button_to_rpi.png │ │ ├── led_to_rpi.png │ │ ├── notification_flag_template.png │ │ ├── notification_gadget.png │ │ ├── pi_cli_screenshot_0.png │ │ ├── pi_cli_screenshot_1.png │ │ ├── pi_cli_screenshot_2.png │ │ ├── pi_cli_screenshot_3.png │ │ ├── pi_cli_screenshot_4.png │ │ ├── pi_cli_screenshot_5.png │ │ ├── pi_cli_screenshot_6.png │ │ ├── pi_cli_screenshot_7.png │ │ ├── pi_desktop_disable_bt_menu.png │ │ ├── pi_desktop_error_popup.png │ │ ├── pi_led_hardware.png │ │ ├── pi_servo_hardware.png │ │ ├── register_gadget_screenshot_1.png │ │ ├── register_gadget_screenshot_2.png │ │ ├── register_gadget_screenshot_3.png │ │ ├── register_gadget_screenshot_4.png │ │ ├── register_gadget_screenshot_5.png │ │ ├── register_gadget_screenshot_6.png │ │ ├── rgb_led_pinout.png │ │ ├── screen_based_pairing_screenshot_1.png │ │ ├── screen_based_pairing_screenshot_2.png │ │ ├── screen_based_pairing_screenshot_3.png │ │ ├── screen_based_pairing_screenshot_4.png │ │ ├── screen_based_unpairing_screenshot_1.png │ │ ├── screen_based_unpairing_screenshot_2.png │ │ ├── servo_to_rpi.png │ │ ├── status_gauge_gadget.png │ │ ├── timer_gadget.png │ │ ├── timer_template.png │ │ └── troubleshooting_screenshot_1.png │ └── pdfs │ │ ├── Notification-Flag-Template.pdf │ │ └── Timer-Template.pdf │ ├── api.rst │ ├── color_cycler.rst │ ├── conf.py │ ├── index.rst │ ├── kitchen_sink.rst │ ├── notification.rst │ ├── overview.rst │ ├── timer.rst │ └── wakeword.rst ├── launch.py └── src ├── agt ├── __init__.py ├── alexa_gadget.py ├── base_adapter.py ├── ble │ ├── __init__.py │ ├── adapter.py │ ├── messages.proto │ ├── messages_pb2.py │ └── protocol.py ├── bt_classic │ ├── __init__.py │ └── adapter.py ├── messages.proto ├── messages_pb2.py └── util.py ├── examples ├── color_cycler │ ├── README.md │ ├── color_cycler.ini │ ├── color_cycler.py │ └── skill │ │ ├── NodeJS │ │ ├── .ask │ │ │ └── config │ │ ├── README.md │ │ ├── hooks │ │ │ └── pre_deploy_hook.sh │ │ ├── lambda │ │ │ └── custom │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── models │ │ │ └── en-US.json │ │ └── skill.json │ │ └── Python │ │ ├── .ask │ │ └── config │ │ ├── README.md │ │ ├── hooks │ │ └── pre_deploy_hook.sh │ │ ├── lambda │ │ ├── lambda_function.py │ │ └── requirements.txt │ │ ├── models │ │ └── en-US.json │ │ └── skill.json ├── kitchen_sink │ ├── README.md │ ├── kitchen_sink.ini │ └── kitchen_sink.py ├── notification │ ├── README.md │ ├── notification.ini │ └── notification.py ├── timer │ ├── README.md │ ├── timer.ini │ └── timer.py └── wakeword │ ├── README.md │ ├── wakeword.ini │ └── wakeword.py └── setup.py /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/README.md -------------------------------------------------------------------------------- /docs/_static/images/app_based_pairing_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/app_based_pairing_screenshot_1.png -------------------------------------------------------------------------------- /docs/_static/images/app_based_pairing_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/app_based_pairing_screenshot_2.png -------------------------------------------------------------------------------- /docs/_static/images/app_based_pairing_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/app_based_pairing_screenshot_3.png -------------------------------------------------------------------------------- /docs/_static/images/app_based_pairing_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/app_based_pairing_screenshot_4.png -------------------------------------------------------------------------------- /docs/_static/images/app_based_pairing_screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/app_based_pairing_screenshot_5.png -------------------------------------------------------------------------------- /docs/_static/images/app_based_pairing_screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/app_based_pairing_screenshot_6.png -------------------------------------------------------------------------------- /docs/_static/images/app_based_unpairing_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/app_based_unpairing_screenshot_1.png -------------------------------------------------------------------------------- /docs/_static/images/app_based_unpairing_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/app_based_unpairing_screenshot_2.png -------------------------------------------------------------------------------- /docs/_static/images/button_pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/button_pinout.png -------------------------------------------------------------------------------- /docs/_static/images/color_cycler_components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/color_cycler_components.png -------------------------------------------------------------------------------- /docs/_static/images/color_cycler_gadget.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/color_cycler_gadget.jpg -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_creation_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_creation_screenshot_1.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_creation_screenshot_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_creation_screenshot_10.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_creation_screenshot_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_creation_screenshot_11.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_creation_screenshot_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_creation_screenshot_12.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_creation_screenshot_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_creation_screenshot_13.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_creation_screenshot_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_creation_screenshot_14.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_creation_screenshot_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_creation_screenshot_15.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_creation_screenshot_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_creation_screenshot_16.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_creation_screenshot_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_creation_screenshot_17.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_creation_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_creation_screenshot_2.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_creation_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_creation_screenshot_3.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_creation_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_creation_screenshot_4.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_creation_screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_creation_screenshot_5.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_creation_screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_creation_screenshot_6.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_creation_screenshot_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_creation_screenshot_7.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_creation_screenshot_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_creation_screenshot_8.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_creation_screenshot_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_creation_screenshot_9.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_lambda_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_lambda_screenshot_1.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_lambda_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_lambda_screenshot_2.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_lambda_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_lambda_screenshot_3.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_lambda_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_lambda_screenshot_4.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_lambda_screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_lambda_screenshot_5.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_test_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_test_screenshot_1.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_test_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_test_screenshot_2.png -------------------------------------------------------------------------------- /docs/_static/images/colorcycler_skill_test_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/colorcycler_skill_test_screenshot_3.png -------------------------------------------------------------------------------- /docs/_static/images/led_button_to_rpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/led_button_to_rpi.png -------------------------------------------------------------------------------- /docs/_static/images/led_to_rpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/led_to_rpi.png -------------------------------------------------------------------------------- /docs/_static/images/notification_flag_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/notification_flag_template.png -------------------------------------------------------------------------------- /docs/_static/images/notification_gadget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/notification_gadget.png -------------------------------------------------------------------------------- /docs/_static/images/pi_cli_screenshot_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/pi_cli_screenshot_0.png -------------------------------------------------------------------------------- /docs/_static/images/pi_cli_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/pi_cli_screenshot_1.png -------------------------------------------------------------------------------- /docs/_static/images/pi_cli_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/pi_cli_screenshot_2.png -------------------------------------------------------------------------------- /docs/_static/images/pi_cli_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/pi_cli_screenshot_3.png -------------------------------------------------------------------------------- /docs/_static/images/pi_cli_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/pi_cli_screenshot_4.png -------------------------------------------------------------------------------- /docs/_static/images/pi_cli_screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/pi_cli_screenshot_5.png -------------------------------------------------------------------------------- /docs/_static/images/pi_cli_screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/pi_cli_screenshot_6.png -------------------------------------------------------------------------------- /docs/_static/images/pi_cli_screenshot_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/pi_cli_screenshot_7.png -------------------------------------------------------------------------------- /docs/_static/images/pi_desktop_disable_bt_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/pi_desktop_disable_bt_menu.png -------------------------------------------------------------------------------- /docs/_static/images/pi_desktop_error_popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/pi_desktop_error_popup.png -------------------------------------------------------------------------------- /docs/_static/images/pi_led_hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/pi_led_hardware.png -------------------------------------------------------------------------------- /docs/_static/images/pi_servo_hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/pi_servo_hardware.png -------------------------------------------------------------------------------- /docs/_static/images/register_gadget_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/register_gadget_screenshot_1.png -------------------------------------------------------------------------------- /docs/_static/images/register_gadget_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/register_gadget_screenshot_2.png -------------------------------------------------------------------------------- /docs/_static/images/register_gadget_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/register_gadget_screenshot_3.png -------------------------------------------------------------------------------- /docs/_static/images/register_gadget_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/register_gadget_screenshot_4.png -------------------------------------------------------------------------------- /docs/_static/images/register_gadget_screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/register_gadget_screenshot_5.png -------------------------------------------------------------------------------- /docs/_static/images/register_gadget_screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/register_gadget_screenshot_6.png -------------------------------------------------------------------------------- /docs/_static/images/rgb_led_pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/rgb_led_pinout.png -------------------------------------------------------------------------------- /docs/_static/images/screen_based_pairing_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/screen_based_pairing_screenshot_1.png -------------------------------------------------------------------------------- /docs/_static/images/screen_based_pairing_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/screen_based_pairing_screenshot_2.png -------------------------------------------------------------------------------- /docs/_static/images/screen_based_pairing_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/screen_based_pairing_screenshot_3.png -------------------------------------------------------------------------------- /docs/_static/images/screen_based_pairing_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/screen_based_pairing_screenshot_4.png -------------------------------------------------------------------------------- /docs/_static/images/screen_based_unpairing_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/screen_based_unpairing_screenshot_1.png -------------------------------------------------------------------------------- /docs/_static/images/screen_based_unpairing_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/screen_based_unpairing_screenshot_2.png -------------------------------------------------------------------------------- /docs/_static/images/servo_to_rpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/servo_to_rpi.png -------------------------------------------------------------------------------- /docs/_static/images/timer_gadget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/timer_gadget.png -------------------------------------------------------------------------------- /docs/_static/images/timer_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/images/timer_template.png -------------------------------------------------------------------------------- /docs/_static/pdfs/Notification-Flag-Template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/pdfs/Notification-Flag-Template.pdf -------------------------------------------------------------------------------- /docs/_static/pdfs/Timer-Template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/_static/pdfs/Timer-Template.pdf -------------------------------------------------------------------------------- /docs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build.sh -------------------------------------------------------------------------------- /docs/build/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/.buildinfo -------------------------------------------------------------------------------- /docs/build/_images/app_based_pairing_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/app_based_pairing_screenshot_1.png -------------------------------------------------------------------------------- /docs/build/_images/app_based_pairing_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/app_based_pairing_screenshot_2.png -------------------------------------------------------------------------------- /docs/build/_images/app_based_pairing_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/app_based_pairing_screenshot_3.png -------------------------------------------------------------------------------- /docs/build/_images/app_based_pairing_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/app_based_pairing_screenshot_4.png -------------------------------------------------------------------------------- /docs/build/_images/app_based_pairing_screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/app_based_pairing_screenshot_5.png -------------------------------------------------------------------------------- /docs/build/_images/app_based_pairing_screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/app_based_pairing_screenshot_6.png -------------------------------------------------------------------------------- /docs/build/_images/app_based_unpairing_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/app_based_unpairing_screenshot_1.png -------------------------------------------------------------------------------- /docs/build/_images/app_based_unpairing_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/app_based_unpairing_screenshot_2.png -------------------------------------------------------------------------------- /docs/build/_images/button_pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/button_pinout.png -------------------------------------------------------------------------------- /docs/build/_images/color_cycler_components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/color_cycler_components.png -------------------------------------------------------------------------------- /docs/build/_images/color_cycler_gadget.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/color_cycler_gadget.jpg -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_creation_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_creation_screenshot_1.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_creation_screenshot_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_creation_screenshot_10.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_creation_screenshot_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_creation_screenshot_11.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_creation_screenshot_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_creation_screenshot_12.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_creation_screenshot_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_creation_screenshot_13.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_creation_screenshot_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_creation_screenshot_14.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_creation_screenshot_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_creation_screenshot_15.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_creation_screenshot_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_creation_screenshot_16.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_creation_screenshot_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_creation_screenshot_17.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_creation_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_creation_screenshot_2.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_creation_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_creation_screenshot_3.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_creation_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_creation_screenshot_4.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_creation_screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_creation_screenshot_5.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_creation_screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_creation_screenshot_6.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_creation_screenshot_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_creation_screenshot_7.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_creation_screenshot_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_creation_screenshot_8.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_creation_screenshot_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_creation_screenshot_9.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_lambda_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_lambda_screenshot_1.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_lambda_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_lambda_screenshot_2.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_lambda_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_lambda_screenshot_3.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_lambda_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_lambda_screenshot_4.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_lambda_screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_lambda_screenshot_5.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_test_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_test_screenshot_1.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_test_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_test_screenshot_2.png -------------------------------------------------------------------------------- /docs/build/_images/colorcycler_skill_test_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/colorcycler_skill_test_screenshot_3.png -------------------------------------------------------------------------------- /docs/build/_images/led_button_to_rpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/led_button_to_rpi.png -------------------------------------------------------------------------------- /docs/build/_images/led_to_rpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/led_to_rpi.png -------------------------------------------------------------------------------- /docs/build/_images/notification_flag_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/notification_flag_template.png -------------------------------------------------------------------------------- /docs/build/_images/notification_gadget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/notification_gadget.png -------------------------------------------------------------------------------- /docs/build/_images/pi_cli_screenshot_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/pi_cli_screenshot_0.png -------------------------------------------------------------------------------- /docs/build/_images/pi_cli_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/pi_cli_screenshot_1.png -------------------------------------------------------------------------------- /docs/build/_images/pi_cli_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/pi_cli_screenshot_2.png -------------------------------------------------------------------------------- /docs/build/_images/pi_cli_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/pi_cli_screenshot_3.png -------------------------------------------------------------------------------- /docs/build/_images/pi_cli_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/pi_cli_screenshot_4.png -------------------------------------------------------------------------------- /docs/build/_images/pi_cli_screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/pi_cli_screenshot_5.png -------------------------------------------------------------------------------- /docs/build/_images/pi_cli_screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/pi_cli_screenshot_6.png -------------------------------------------------------------------------------- /docs/build/_images/pi_cli_screenshot_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/pi_cli_screenshot_7.png -------------------------------------------------------------------------------- /docs/build/_images/pi_desktop_disable_bt_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/pi_desktop_disable_bt_menu.png -------------------------------------------------------------------------------- /docs/build/_images/pi_led_hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/pi_led_hardware.png -------------------------------------------------------------------------------- /docs/build/_images/pi_servo_hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/pi_servo_hardware.png -------------------------------------------------------------------------------- /docs/build/_images/register_gadget_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/register_gadget_screenshot_1.png -------------------------------------------------------------------------------- /docs/build/_images/register_gadget_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/register_gadget_screenshot_2.png -------------------------------------------------------------------------------- /docs/build/_images/register_gadget_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/register_gadget_screenshot_3.png -------------------------------------------------------------------------------- /docs/build/_images/register_gadget_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/register_gadget_screenshot_4.png -------------------------------------------------------------------------------- /docs/build/_images/register_gadget_screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/register_gadget_screenshot_5.png -------------------------------------------------------------------------------- /docs/build/_images/register_gadget_screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/register_gadget_screenshot_6.png -------------------------------------------------------------------------------- /docs/build/_images/rgb_led_pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/rgb_led_pinout.png -------------------------------------------------------------------------------- /docs/build/_images/screen_based_pairing_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/screen_based_pairing_screenshot_1.png -------------------------------------------------------------------------------- /docs/build/_images/screen_based_pairing_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/screen_based_pairing_screenshot_2.png -------------------------------------------------------------------------------- /docs/build/_images/screen_based_pairing_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/screen_based_pairing_screenshot_3.png -------------------------------------------------------------------------------- /docs/build/_images/screen_based_pairing_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/screen_based_pairing_screenshot_4.png -------------------------------------------------------------------------------- /docs/build/_images/screen_based_unpairing_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/screen_based_unpairing_screenshot_1.png -------------------------------------------------------------------------------- /docs/build/_images/screen_based_unpairing_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/screen_based_unpairing_screenshot_2.png -------------------------------------------------------------------------------- /docs/build/_images/servo_to_rpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/servo_to_rpi.png -------------------------------------------------------------------------------- /docs/build/_images/timer_gadget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/timer_gadget.png -------------------------------------------------------------------------------- /docs/build/_images/timer_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_images/timer_template.png -------------------------------------------------------------------------------- /docs/build/_modules/agt/alexa_gadget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_modules/agt/alexa_gadget.html -------------------------------------------------------------------------------- /docs/build/_modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_modules/index.html -------------------------------------------------------------------------------- /docs/build/_sources/api.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_sources/api.rst.txt -------------------------------------------------------------------------------- /docs/build/_sources/color_cycler.rst.txt: -------------------------------------------------------------------------------- 1 | .. mdinclude:: /tmp/agt-docs-src/examples/color_cycler/README.md 2 | -------------------------------------------------------------------------------- /docs/build/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/build/_sources/kitchen_sink.rst.txt: -------------------------------------------------------------------------------- 1 | .. mdinclude:: /tmp/agt-docs-src/examples/kitchen_sink/README.md 2 | -------------------------------------------------------------------------------- /docs/build/_sources/notification.rst.txt: -------------------------------------------------------------------------------- 1 | .. mdinclude:: /tmp/agt-docs-src/examples/notification/README.md 2 | -------------------------------------------------------------------------------- /docs/build/_sources/overview.rst.txt: -------------------------------------------------------------------------------- 1 | .. mdinclude:: /tmp/agt-docs-src/README.md 2 | -------------------------------------------------------------------------------- /docs/build/_sources/timer.rst.txt: -------------------------------------------------------------------------------- 1 | .. mdinclude:: /tmp/agt-docs-src/examples/timer/README.md 2 | -------------------------------------------------------------------------------- /docs/build/_sources/wakeword.rst.txt: -------------------------------------------------------------------------------- 1 | .. mdinclude:: /tmp/agt-docs-src/examples/wakeword/README.md 2 | -------------------------------------------------------------------------------- /docs/build/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/basic.css -------------------------------------------------------------------------------- /docs/build/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/build/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/css/theme.css -------------------------------------------------------------------------------- /docs/build/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/doctools.js -------------------------------------------------------------------------------- /docs/build/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/build/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/file.png -------------------------------------------------------------------------------- /docs/build/_static/fonts/Inconsolata-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/fonts/Inconsolata-Bold.ttf -------------------------------------------------------------------------------- /docs/build/_static/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /docs/build/_static/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /docs/build/_static/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /docs/build/_static/fonts/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/fonts/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /docs/build/_static/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /docs/build/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/build/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/build/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/build/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/build/_static/images/app_based_pairing_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/app_based_pairing_screenshot_1.png -------------------------------------------------------------------------------- /docs/build/_static/images/app_based_pairing_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/app_based_pairing_screenshot_2.png -------------------------------------------------------------------------------- /docs/build/_static/images/app_based_pairing_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/app_based_pairing_screenshot_3.png -------------------------------------------------------------------------------- /docs/build/_static/images/app_based_pairing_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/app_based_pairing_screenshot_4.png -------------------------------------------------------------------------------- /docs/build/_static/images/app_based_pairing_screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/app_based_pairing_screenshot_5.png -------------------------------------------------------------------------------- /docs/build/_static/images/app_based_pairing_screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/app_based_pairing_screenshot_6.png -------------------------------------------------------------------------------- /docs/build/_static/images/app_based_unpairing_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/app_based_unpairing_screenshot_1.png -------------------------------------------------------------------------------- /docs/build/_static/images/app_based_unpairing_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/app_based_unpairing_screenshot_2.png -------------------------------------------------------------------------------- /docs/build/_static/images/app_based_unpairing_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/app_based_unpairing_screenshot_3.png -------------------------------------------------------------------------------- /docs/build/_static/images/button_pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/button_pinout.png -------------------------------------------------------------------------------- /docs/build/_static/images/color_cycler_components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/color_cycler_components.png -------------------------------------------------------------------------------- /docs/build/_static/images/color_cycler_gadget.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/color_cycler_gadget.jpg -------------------------------------------------------------------------------- /docs/build/_static/images/color_cycler_gadget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/color_cycler_gadget.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_creation_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_creation_screenshot_1.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_creation_screenshot_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_creation_screenshot_10.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_creation_screenshot_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_creation_screenshot_11.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_creation_screenshot_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_creation_screenshot_12.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_creation_screenshot_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_creation_screenshot_13.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_creation_screenshot_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_creation_screenshot_14.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_creation_screenshot_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_creation_screenshot_15.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_creation_screenshot_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_creation_screenshot_16.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_creation_screenshot_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_creation_screenshot_17.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_creation_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_creation_screenshot_2.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_creation_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_creation_screenshot_3.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_creation_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_creation_screenshot_4.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_creation_screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_creation_screenshot_5.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_creation_screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_creation_screenshot_6.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_creation_screenshot_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_creation_screenshot_7.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_creation_screenshot_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_creation_screenshot_8.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_creation_screenshot_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_creation_screenshot_9.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_lambda_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_lambda_screenshot_1.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_lambda_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_lambda_screenshot_2.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_lambda_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_lambda_screenshot_3.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_lambda_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_lambda_screenshot_4.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_lambda_screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_lambda_screenshot_5.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_test_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_test_screenshot_1.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_test_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_test_screenshot_2.png -------------------------------------------------------------------------------- /docs/build/_static/images/colorcycler_skill_test_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/colorcycler_skill_test_screenshot_3.png -------------------------------------------------------------------------------- /docs/build/_static/images/led_button_to_rpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/led_button_to_rpi.png -------------------------------------------------------------------------------- /docs/build/_static/images/led_to_rpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/led_to_rpi.png -------------------------------------------------------------------------------- /docs/build/_static/images/notification_flag_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/notification_flag_template.png -------------------------------------------------------------------------------- /docs/build/_static/images/notification_gadget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/notification_gadget.png -------------------------------------------------------------------------------- /docs/build/_static/images/pi_cli_screenshot_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/pi_cli_screenshot_0.png -------------------------------------------------------------------------------- /docs/build/_static/images/pi_cli_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/pi_cli_screenshot_1.png -------------------------------------------------------------------------------- /docs/build/_static/images/pi_cli_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/pi_cli_screenshot_2.png -------------------------------------------------------------------------------- /docs/build/_static/images/pi_cli_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/pi_cli_screenshot_3.png -------------------------------------------------------------------------------- /docs/build/_static/images/pi_cli_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/pi_cli_screenshot_4.png -------------------------------------------------------------------------------- /docs/build/_static/images/pi_cli_screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/pi_cli_screenshot_5.png -------------------------------------------------------------------------------- /docs/build/_static/images/pi_cli_screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/pi_cli_screenshot_6.png -------------------------------------------------------------------------------- /docs/build/_static/images/pi_cli_screenshot_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/pi_cli_screenshot_7.png -------------------------------------------------------------------------------- /docs/build/_static/images/pi_desktop_disable_bt_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/pi_desktop_disable_bt_menu.png -------------------------------------------------------------------------------- /docs/build/_static/images/pi_desktop_error_popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/pi_desktop_error_popup.png -------------------------------------------------------------------------------- /docs/build/_static/images/pi_led_hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/pi_led_hardware.png -------------------------------------------------------------------------------- /docs/build/_static/images/pi_servo_hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/pi_servo_hardware.png -------------------------------------------------------------------------------- /docs/build/_static/images/register_gadget_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/register_gadget_screenshot_1.png -------------------------------------------------------------------------------- /docs/build/_static/images/register_gadget_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/register_gadget_screenshot_2.png -------------------------------------------------------------------------------- /docs/build/_static/images/register_gadget_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/register_gadget_screenshot_3.png -------------------------------------------------------------------------------- /docs/build/_static/images/register_gadget_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/register_gadget_screenshot_4.png -------------------------------------------------------------------------------- /docs/build/_static/images/register_gadget_screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/register_gadget_screenshot_5.png -------------------------------------------------------------------------------- /docs/build/_static/images/register_gadget_screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/register_gadget_screenshot_6.png -------------------------------------------------------------------------------- /docs/build/_static/images/rgb_led_pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/rgb_led_pinout.png -------------------------------------------------------------------------------- /docs/build/_static/images/screen_based_pairing_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/screen_based_pairing_screenshot_1.png -------------------------------------------------------------------------------- /docs/build/_static/images/screen_based_pairing_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/screen_based_pairing_screenshot_2.png -------------------------------------------------------------------------------- /docs/build/_static/images/screen_based_pairing_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/screen_based_pairing_screenshot_3.png -------------------------------------------------------------------------------- /docs/build/_static/images/screen_based_pairing_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/screen_based_pairing_screenshot_4.png -------------------------------------------------------------------------------- /docs/build/_static/images/screen_based_unpairing_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/screen_based_unpairing_screenshot_1.png -------------------------------------------------------------------------------- /docs/build/_static/images/screen_based_unpairing_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/screen_based_unpairing_screenshot_2.png -------------------------------------------------------------------------------- /docs/build/_static/images/servo_to_rpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/servo_to_rpi.png -------------------------------------------------------------------------------- /docs/build/_static/images/status_gauge_gadget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/status_gauge_gadget.png -------------------------------------------------------------------------------- /docs/build/_static/images/timer_gadget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/timer_gadget.png -------------------------------------------------------------------------------- /docs/build/_static/images/timer_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/timer_template.png -------------------------------------------------------------------------------- /docs/build/_static/images/troubleshooting_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/images/troubleshooting_screenshot_1.png -------------------------------------------------------------------------------- /docs/build/_static/jquery-3.4.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/jquery-3.4.1.js -------------------------------------------------------------------------------- /docs/build/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/jquery.js -------------------------------------------------------------------------------- /docs/build/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /docs/build/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/js/theme.js -------------------------------------------------------------------------------- /docs/build/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/language_data.js -------------------------------------------------------------------------------- /docs/build/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/minus.png -------------------------------------------------------------------------------- /docs/build/_static/pdfs/Notification-Flag-Template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/pdfs/Notification-Flag-Template.pdf -------------------------------------------------------------------------------- /docs/build/_static/pdfs/Timer-Template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/pdfs/Timer-Template.pdf -------------------------------------------------------------------------------- /docs/build/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/plus.png -------------------------------------------------------------------------------- /docs/build/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/pygments.css -------------------------------------------------------------------------------- /docs/build/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/searchtools.js -------------------------------------------------------------------------------- /docs/build/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/build/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/_static/underscore.js -------------------------------------------------------------------------------- /docs/build/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/api.html -------------------------------------------------------------------------------- /docs/build/color_cycler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/color_cycler.html -------------------------------------------------------------------------------- /docs/build/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/genindex.html -------------------------------------------------------------------------------- /docs/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/index.html -------------------------------------------------------------------------------- /docs/build/kitchen_sink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/kitchen_sink.html -------------------------------------------------------------------------------- /docs/build/notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/notification.html -------------------------------------------------------------------------------- /docs/build/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/objects.inv -------------------------------------------------------------------------------- /docs/build/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/overview.html -------------------------------------------------------------------------------- /docs/build/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/py-modindex.html -------------------------------------------------------------------------------- /docs/build/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/search.html -------------------------------------------------------------------------------- /docs/build/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/searchindex.js -------------------------------------------------------------------------------- /docs/build/timer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/timer.html -------------------------------------------------------------------------------- /docs/build/wakeword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/build/wakeword.html -------------------------------------------------------------------------------- /docs/source/_static/images/app_based_pairing_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/app_based_pairing_screenshot_1.png -------------------------------------------------------------------------------- /docs/source/_static/images/app_based_pairing_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/app_based_pairing_screenshot_2.png -------------------------------------------------------------------------------- /docs/source/_static/images/app_based_pairing_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/app_based_pairing_screenshot_3.png -------------------------------------------------------------------------------- /docs/source/_static/images/app_based_pairing_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/app_based_pairing_screenshot_4.png -------------------------------------------------------------------------------- /docs/source/_static/images/app_based_pairing_screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/app_based_pairing_screenshot_5.png -------------------------------------------------------------------------------- /docs/source/_static/images/app_based_pairing_screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/app_based_pairing_screenshot_6.png -------------------------------------------------------------------------------- /docs/source/_static/images/app_based_unpairing_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/app_based_unpairing_screenshot_1.png -------------------------------------------------------------------------------- /docs/source/_static/images/app_based_unpairing_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/app_based_unpairing_screenshot_2.png -------------------------------------------------------------------------------- /docs/source/_static/images/app_based_unpairing_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/app_based_unpairing_screenshot_3.png -------------------------------------------------------------------------------- /docs/source/_static/images/button_pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/button_pinout.png -------------------------------------------------------------------------------- /docs/source/_static/images/color_cycler_components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/color_cycler_components.png -------------------------------------------------------------------------------- /docs/source/_static/images/color_cycler_gadget.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/color_cycler_gadget.jpg -------------------------------------------------------------------------------- /docs/source/_static/images/color_cycler_gadget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/color_cycler_gadget.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_creation_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_creation_screenshot_1.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_creation_screenshot_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_creation_screenshot_10.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_creation_screenshot_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_creation_screenshot_11.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_creation_screenshot_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_creation_screenshot_12.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_creation_screenshot_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_creation_screenshot_13.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_creation_screenshot_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_creation_screenshot_14.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_creation_screenshot_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_creation_screenshot_15.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_creation_screenshot_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_creation_screenshot_16.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_creation_screenshot_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_creation_screenshot_17.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_creation_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_creation_screenshot_2.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_creation_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_creation_screenshot_3.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_creation_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_creation_screenshot_4.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_creation_screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_creation_screenshot_5.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_creation_screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_creation_screenshot_6.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_creation_screenshot_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_creation_screenshot_7.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_creation_screenshot_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_creation_screenshot_8.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_creation_screenshot_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_creation_screenshot_9.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_lambda_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_lambda_screenshot_1.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_lambda_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_lambda_screenshot_2.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_lambda_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_lambda_screenshot_3.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_lambda_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_lambda_screenshot_4.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_lambda_screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_lambda_screenshot_5.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_test_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_test_screenshot_1.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_test_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_test_screenshot_2.png -------------------------------------------------------------------------------- /docs/source/_static/images/colorcycler_skill_test_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/colorcycler_skill_test_screenshot_3.png -------------------------------------------------------------------------------- /docs/source/_static/images/led_button_to_rpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/led_button_to_rpi.png -------------------------------------------------------------------------------- /docs/source/_static/images/led_to_rpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/led_to_rpi.png -------------------------------------------------------------------------------- /docs/source/_static/images/notification_flag_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/notification_flag_template.png -------------------------------------------------------------------------------- /docs/source/_static/images/notification_gadget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/notification_gadget.png -------------------------------------------------------------------------------- /docs/source/_static/images/pi_cli_screenshot_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/pi_cli_screenshot_0.png -------------------------------------------------------------------------------- /docs/source/_static/images/pi_cli_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/pi_cli_screenshot_1.png -------------------------------------------------------------------------------- /docs/source/_static/images/pi_cli_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/pi_cli_screenshot_2.png -------------------------------------------------------------------------------- /docs/source/_static/images/pi_cli_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/pi_cli_screenshot_3.png -------------------------------------------------------------------------------- /docs/source/_static/images/pi_cli_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/pi_cli_screenshot_4.png -------------------------------------------------------------------------------- /docs/source/_static/images/pi_cli_screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/pi_cli_screenshot_5.png -------------------------------------------------------------------------------- /docs/source/_static/images/pi_cli_screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/pi_cli_screenshot_6.png -------------------------------------------------------------------------------- /docs/source/_static/images/pi_cli_screenshot_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/pi_cli_screenshot_7.png -------------------------------------------------------------------------------- /docs/source/_static/images/pi_desktop_disable_bt_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/pi_desktop_disable_bt_menu.png -------------------------------------------------------------------------------- /docs/source/_static/images/pi_desktop_error_popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/pi_desktop_error_popup.png -------------------------------------------------------------------------------- /docs/source/_static/images/pi_led_hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/pi_led_hardware.png -------------------------------------------------------------------------------- /docs/source/_static/images/pi_servo_hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/pi_servo_hardware.png -------------------------------------------------------------------------------- /docs/source/_static/images/register_gadget_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/register_gadget_screenshot_1.png -------------------------------------------------------------------------------- /docs/source/_static/images/register_gadget_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/register_gadget_screenshot_2.png -------------------------------------------------------------------------------- /docs/source/_static/images/register_gadget_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/register_gadget_screenshot_3.png -------------------------------------------------------------------------------- /docs/source/_static/images/register_gadget_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/register_gadget_screenshot_4.png -------------------------------------------------------------------------------- /docs/source/_static/images/register_gadget_screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/register_gadget_screenshot_5.png -------------------------------------------------------------------------------- /docs/source/_static/images/register_gadget_screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/register_gadget_screenshot_6.png -------------------------------------------------------------------------------- /docs/source/_static/images/rgb_led_pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/rgb_led_pinout.png -------------------------------------------------------------------------------- /docs/source/_static/images/screen_based_pairing_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/screen_based_pairing_screenshot_1.png -------------------------------------------------------------------------------- /docs/source/_static/images/screen_based_pairing_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/screen_based_pairing_screenshot_2.png -------------------------------------------------------------------------------- /docs/source/_static/images/screen_based_pairing_screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/screen_based_pairing_screenshot_3.png -------------------------------------------------------------------------------- /docs/source/_static/images/screen_based_pairing_screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/screen_based_pairing_screenshot_4.png -------------------------------------------------------------------------------- /docs/source/_static/images/screen_based_unpairing_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/screen_based_unpairing_screenshot_1.png -------------------------------------------------------------------------------- /docs/source/_static/images/screen_based_unpairing_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/screen_based_unpairing_screenshot_2.png -------------------------------------------------------------------------------- /docs/source/_static/images/servo_to_rpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/servo_to_rpi.png -------------------------------------------------------------------------------- /docs/source/_static/images/status_gauge_gadget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/status_gauge_gadget.png -------------------------------------------------------------------------------- /docs/source/_static/images/timer_gadget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/timer_gadget.png -------------------------------------------------------------------------------- /docs/source/_static/images/timer_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/timer_template.png -------------------------------------------------------------------------------- /docs/source/_static/images/troubleshooting_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/images/troubleshooting_screenshot_1.png -------------------------------------------------------------------------------- /docs/source/_static/pdfs/Notification-Flag-Template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/pdfs/Notification-Flag-Template.pdf -------------------------------------------------------------------------------- /docs/source/_static/pdfs/Timer-Template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/_static/pdfs/Timer-Template.pdf -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/color_cycler.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: /tmp/agt-docs-src/examples/color_cycler/README.md 2 | -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/kitchen_sink.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: /tmp/agt-docs-src/examples/kitchen_sink/README.md 2 | -------------------------------------------------------------------------------- /docs/source/notification.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: /tmp/agt-docs-src/examples/notification/README.md 2 | -------------------------------------------------------------------------------- /docs/source/overview.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: /tmp/agt-docs-src/README.md 2 | -------------------------------------------------------------------------------- /docs/source/timer.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: /tmp/agt-docs-src/examples/timer/README.md 2 | -------------------------------------------------------------------------------- /docs/source/wakeword.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: /tmp/agt-docs-src/examples/wakeword/README.md 2 | -------------------------------------------------------------------------------- /launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/launch.py -------------------------------------------------------------------------------- /src/agt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/agt/__init__.py -------------------------------------------------------------------------------- /src/agt/alexa_gadget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/agt/alexa_gadget.py -------------------------------------------------------------------------------- /src/agt/base_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/agt/base_adapter.py -------------------------------------------------------------------------------- /src/agt/ble/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/agt/ble/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/agt/ble/adapter.py -------------------------------------------------------------------------------- /src/agt/ble/messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/agt/ble/messages.proto -------------------------------------------------------------------------------- /src/agt/ble/messages_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/agt/ble/messages_pb2.py -------------------------------------------------------------------------------- /src/agt/ble/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/agt/ble/protocol.py -------------------------------------------------------------------------------- /src/agt/bt_classic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/agt/bt_classic/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/agt/bt_classic/adapter.py -------------------------------------------------------------------------------- /src/agt/messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/agt/messages.proto -------------------------------------------------------------------------------- /src/agt/messages_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/agt/messages_pb2.py -------------------------------------------------------------------------------- /src/agt/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/agt/util.py -------------------------------------------------------------------------------- /src/examples/color_cycler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/color_cycler/README.md -------------------------------------------------------------------------------- /src/examples/color_cycler/color_cycler.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/color_cycler/color_cycler.ini -------------------------------------------------------------------------------- /src/examples/color_cycler/color_cycler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/color_cycler/color_cycler.py -------------------------------------------------------------------------------- /src/examples/color_cycler/skill/NodeJS/.ask/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/color_cycler/skill/NodeJS/.ask/config -------------------------------------------------------------------------------- /src/examples/color_cycler/skill/NodeJS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/color_cycler/skill/NodeJS/README.md -------------------------------------------------------------------------------- /src/examples/color_cycler/skill/NodeJS/hooks/pre_deploy_hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/color_cycler/skill/NodeJS/hooks/pre_deploy_hook.sh -------------------------------------------------------------------------------- /src/examples/color_cycler/skill/NodeJS/lambda/custom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/color_cycler/skill/NodeJS/lambda/custom/index.js -------------------------------------------------------------------------------- /src/examples/color_cycler/skill/NodeJS/lambda/custom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/color_cycler/skill/NodeJS/lambda/custom/package.json -------------------------------------------------------------------------------- /src/examples/color_cycler/skill/NodeJS/models/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/color_cycler/skill/NodeJS/models/en-US.json -------------------------------------------------------------------------------- /src/examples/color_cycler/skill/NodeJS/skill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/color_cycler/skill/NodeJS/skill.json -------------------------------------------------------------------------------- /src/examples/color_cycler/skill/Python/.ask/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/color_cycler/skill/Python/.ask/config -------------------------------------------------------------------------------- /src/examples/color_cycler/skill/Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/color_cycler/skill/Python/README.md -------------------------------------------------------------------------------- /src/examples/color_cycler/skill/Python/hooks/pre_deploy_hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/color_cycler/skill/Python/hooks/pre_deploy_hook.sh -------------------------------------------------------------------------------- /src/examples/color_cycler/skill/Python/lambda/lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/color_cycler/skill/Python/lambda/lambda_function.py -------------------------------------------------------------------------------- /src/examples/color_cycler/skill/Python/lambda/requirements.txt: -------------------------------------------------------------------------------- 1 | ask-sdk-core -------------------------------------------------------------------------------- /src/examples/color_cycler/skill/Python/models/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/color_cycler/skill/Python/models/en-US.json -------------------------------------------------------------------------------- /src/examples/color_cycler/skill/Python/skill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/color_cycler/skill/Python/skill.json -------------------------------------------------------------------------------- /src/examples/kitchen_sink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/kitchen_sink/README.md -------------------------------------------------------------------------------- /src/examples/kitchen_sink/kitchen_sink.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/kitchen_sink/kitchen_sink.ini -------------------------------------------------------------------------------- /src/examples/kitchen_sink/kitchen_sink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/kitchen_sink/kitchen_sink.py -------------------------------------------------------------------------------- /src/examples/notification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/notification/README.md -------------------------------------------------------------------------------- /src/examples/notification/notification.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/notification/notification.ini -------------------------------------------------------------------------------- /src/examples/notification/notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/notification/notification.py -------------------------------------------------------------------------------- /src/examples/timer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/timer/README.md -------------------------------------------------------------------------------- /src/examples/timer/timer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/timer/timer.ini -------------------------------------------------------------------------------- /src/examples/timer/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/timer/timer.py -------------------------------------------------------------------------------- /src/examples/wakeword/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/wakeword/README.md -------------------------------------------------------------------------------- /src/examples/wakeword/wakeword.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/wakeword/wakeword.ini -------------------------------------------------------------------------------- /src/examples/wakeword/wakeword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/examples/wakeword/wakeword.py -------------------------------------------------------------------------------- /src/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/Alexa-Gadgets-Raspberry-Pi-Samples/HEAD/src/setup.py --------------------------------------------------------------------------------