reachy-mini 1.2.5rc1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- reachy_mini/__init__.py +4 -0
- reachy_mini/apps/__init__.py +25 -0
- reachy_mini/apps/app.py +258 -0
- reachy_mini/apps/assistant.py +787 -0
- reachy_mini/apps/manager.py +312 -0
- reachy_mini/apps/sources/__init__.py +4 -0
- reachy_mini/apps/sources/hf_space.py +106 -0
- reachy_mini/apps/sources/local_common_venv.py +567 -0
- reachy_mini/apps/templates/README.md.j2 +12 -0
- reachy_mini/apps/templates/gitignore.j2 +3 -0
- reachy_mini/apps/templates/index.html.j2 +40 -0
- reachy_mini/apps/templates/main.py.j2 +74 -0
- reachy_mini/apps/templates/pyproject.toml.j2 +28 -0
- reachy_mini/apps/templates/static/index.html.j2 +27 -0
- reachy_mini/apps/templates/static/main.js.j2 +47 -0
- reachy_mini/apps/templates/static/style.css.j2 +25 -0
- reachy_mini/apps/templates/style.css.j2 +411 -0
- reachy_mini/apps/utils.py +30 -0
- reachy_mini/assets/config/hardware_config.yaml +164 -0
- reachy_mini/assets/confused1.wav +0 -0
- reachy_mini/assets/count.wav +0 -0
- reachy_mini/assets/dance1.wav +0 -0
- reachy_mini/assets/firmware/CHANGELOG.md +15 -0
- reachy_mini/assets/firmware/reachymini_ua_io16_lin_v2.1.2.bin +0 -0
- reachy_mini/assets/firmware/reachymini_ua_io16_lin_v2.1.3.bin +0 -0
- reachy_mini/assets/firmware/update.sh +9 -0
- reachy_mini/assets/go_sleep.wav +0 -0
- reachy_mini/assets/impatient1.wav +0 -0
- reachy_mini/assets/kinematics_data.json +253 -0
- reachy_mini/assets/models/fknetwork.dynamic.onnx +0 -0
- reachy_mini/assets/models/fknetwork.onnx +0 -0
- reachy_mini/assets/models/fknetwork_int8.onnx +0 -0
- reachy_mini/assets/models/iknetwork.onnx +0 -0
- reachy_mini/assets/wake_up.wav +0 -0
- reachy_mini/daemon/__init__.py +1 -0
- reachy_mini/daemon/app/__init__.py +1 -0
- reachy_mini/daemon/app/bg_job_register.py +142 -0
- reachy_mini/daemon/app/dashboard/static/assets/KO-cartoon-static.svg +40 -0
- reachy_mini/daemon/app/dashboard/static/assets/awake-cartoon-static.svg +42 -0
- reachy_mini/daemon/app/dashboard/static/assets/awake-cartoon.svg +6 -0
- reachy_mini/daemon/app/dashboard/static/assets/go-to-sleep-cartoon.svg +6 -0
- reachy_mini/daemon/app/dashboard/static/assets/no-wifi-cartoon-static.svg +50 -0
- reachy_mini/daemon/app/dashboard/static/assets/no-wifi-cartoon.svg +6 -0
- reachy_mini/daemon/app/dashboard/static/assets/reachy-mini-awake.svg +18 -0
- reachy_mini/daemon/app/dashboard/static/assets/reachy-mini-connection-lost-animation.svg +6 -0
- reachy_mini/daemon/app/dashboard/static/assets/reachy-mini-go-to-sleep-animation.svg +6 -0
- reachy_mini/daemon/app/dashboard/static/assets/reachy-mini-ko-animation.svg +6 -0
- reachy_mini/daemon/app/dashboard/static/assets/reachy-mini-ko.svg +22 -0
- reachy_mini/daemon/app/dashboard/static/assets/reachy-mini-sleeping-static.svg +41 -0
- reachy_mini/daemon/app/dashboard/static/assets/reachy-mini-sleeping.svg +18 -0
- reachy_mini/daemon/app/dashboard/static/assets/reachy-mini-wake-up-animation.svg +6 -0
- reachy_mini/daemon/app/dashboard/static/css/app.css +1433 -0
- reachy_mini/daemon/app/dashboard/static/fonts/Archivo-Italic-VariableFont_wdth,wght.ttf +0 -0
- reachy_mini/daemon/app/dashboard/static/fonts/Archivo-VariableFont_wdth,wght.ttf +0 -0
- reachy_mini/daemon/app/dashboard/static/fonts/Asap-Italic-VariableFont_wdth,wght.ttf +0 -0
- reachy_mini/daemon/app/dashboard/static/fonts/Asap-VariableFont_wdth,wght.ttf +0 -0
- reachy_mini/daemon/app/dashboard/static/js/3rdparty/gstwebrtc-api-2.0.0.min.js +5 -0
- reachy_mini/daemon/app/dashboard/static/js/apps.js +323 -0
- reachy_mini/daemon/app/dashboard/static/js/appstore.js +167 -0
- reachy_mini/daemon/app/dashboard/static/js/daemon.js +169 -0
- reachy_mini/daemon/app/dashboard/static/js/health_check.js +9 -0
- reachy_mini/daemon/app/dashboard/static/js/move_player.js +132 -0
- reachy_mini/daemon/app/dashboard/static/js/notification.js +41 -0
- reachy_mini/daemon/app/dashboard/static/js/update.js +132 -0
- reachy_mini/daemon/app/dashboard/static/js/volume_control.js +252 -0
- reachy_mini/daemon/app/dashboard/static/js/wifi.js +176 -0
- reachy_mini/daemon/app/dashboard/tailwindcss/README.md +15 -0
- reachy_mini/daemon/app/dashboard/tailwindcss/package-lock.json +1127 -0
- reachy_mini/daemon/app/dashboard/tailwindcss/package.json +6 -0
- reachy_mini/daemon/app/dashboard/tailwindcss/pnpm-lock.yaml +608 -0
- reachy_mini/daemon/app/dashboard/tailwindcss/postcss.config.js +6 -0
- reachy_mini/daemon/app/dashboard/tailwindcss/styles/app.css +185 -0
- reachy_mini/daemon/app/dashboard/tailwindcss/tailwind.config.js +11 -0
- reachy_mini/daemon/app/dashboard/templates/base.html +21 -0
- reachy_mini/daemon/app/dashboard/templates/index.html +20 -0
- reachy_mini/daemon/app/dashboard/templates/sections/apps.html +8 -0
- reachy_mini/daemon/app/dashboard/templates/sections/appstore.html +35 -0
- reachy_mini/daemon/app/dashboard/templates/sections/daemon.html +45 -0
- reachy_mini/daemon/app/dashboard/templates/sections/move_player.html +121 -0
- reachy_mini/daemon/app/dashboard/templates/sections/notification.html +19 -0
- reachy_mini/daemon/app/dashboard/templates/sections/update.html +54 -0
- reachy_mini/daemon/app/dashboard/templates/sections/wifi.html +46 -0
- reachy_mini/daemon/app/dashboard/templates/settings.html +14 -0
- reachy_mini/daemon/app/dependencies.py +41 -0
- reachy_mini/daemon/app/main.py +469 -0
- reachy_mini/daemon/app/models.py +149 -0
- reachy_mini/daemon/app/routers/apps.py +114 -0
- reachy_mini/daemon/app/routers/daemon.py +85 -0
- reachy_mini/daemon/app/routers/kinematics.py +57 -0
- reachy_mini/daemon/app/routers/motors.py +41 -0
- reachy_mini/daemon/app/routers/move.py +265 -0
- reachy_mini/daemon/app/routers/state.py +146 -0
- reachy_mini/daemon/app/routers/update.py +86 -0
- reachy_mini/daemon/app/routers/volume.py +423 -0
- reachy_mini/daemon/app/routers/wifi_config.py +219 -0
- reachy_mini/daemon/app/services/__init__.py +1 -0
- reachy_mini/daemon/app/services/bluetooth/bluetooth_service.py +796 -0
- reachy_mini/daemon/app/services/bluetooth/commands/HOTSPOT.sh +7 -0
- reachy_mini/daemon/app/services/bluetooth/commands/RESTART_DAEMON.sh +4 -0
- reachy_mini/daemon/app/services/bluetooth/commands/SOFTWARE_RESET.sh +7 -0
- reachy_mini/daemon/app/services/bluetooth/install_service_bluetooth.sh +39 -0
- reachy_mini/daemon/app/services/gpio_shutdown/__init__.py +1 -0
- reachy_mini/daemon/app/services/gpio_shutdown/install_service.sh +33 -0
- reachy_mini/daemon/app/services/gpio_shutdown/launcher.sh +3 -0
- reachy_mini/daemon/app/services/gpio_shutdown/shutdown_monitor.py +28 -0
- reachy_mini/daemon/app/services/wireless/generate_asoundrc.sh +70 -0
- reachy_mini/daemon/app/services/wireless/install_service.sh +33 -0
- reachy_mini/daemon/app/services/wireless/launcher.sh +5 -0
- reachy_mini/daemon/backend/__init__.py +1 -0
- reachy_mini/daemon/backend/abstract.py +815 -0
- reachy_mini/daemon/backend/mujoco/__init__.py +36 -0
- reachy_mini/daemon/backend/mujoco/backend.py +395 -0
- reachy_mini/daemon/backend/mujoco/utils.py +59 -0
- reachy_mini/daemon/backend/mujoco/video_udp.py +57 -0
- reachy_mini/daemon/backend/robot/__init__.py +8 -0
- reachy_mini/daemon/backend/robot/backend.py +597 -0
- reachy_mini/daemon/daemon.py +651 -0
- reachy_mini/daemon/utils.py +116 -0
- reachy_mini/descriptions/reachy_mini/mjcf/additional.xml +6 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/5w_speaker.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/5w_speaker.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/antenna.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/antenna.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/antenna_body_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/antenna_body_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/antenna_holder_l_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/antenna_holder_l_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/antenna_holder_r_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/antenna_holder_r_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/antenna_interface_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/antenna_interface_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/arducam.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/arducam.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/b3b_eh.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/b3b_eh.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/b3b_eh_1.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/b3b_eh_1.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/bearing_85x110x13.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/bearing_85x110x13.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/big_lens_d40.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/big_lens_d40.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/body_down_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/body_down_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/body_foot_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/body_foot_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/body_top_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/body_top_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/body_turning_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/body_turning_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/bts2_m2_6x8.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/bts2_m2_6x8.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/collision/README.m +1 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/collision/coarse/body_top_3dprint_collider_back_0.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/collision/coarse/body_top_3dprint_collider_back_1.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/collision/coarse/body_top_3dprint_collider_back_2.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/collision/coarse/body_top_3dprint_collider_back_3.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/collision/coarse/body_top_3dprint_collider_front_0.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/collision/coarse/body_top_3dprint_collider_front_1.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/collision/coarse/body_top_3dprint_collider_front_2.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/collision/coarse/head_one_3dprint_collider_0.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/collision/fine/body_top_3dprint_collider_back_0.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/collision/fine/body_top_3dprint_collider_back_1.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/collision/fine/body_top_3dprint_collider_back_2.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/collision/fine/body_top_3dprint_collider_back_3.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/collision/fine/body_top_3dprint_collider_front_0.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/collision/fine/body_top_3dprint_collider_front_1.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/collision/fine/body_top_3dprint_collider_front_2.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/collision/fine/head_one_3dprint_collider_0.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/croissant_1k.blend/croissant_1k.obj +5021 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/croissant_1k.blend/textures/croissant_diff_1k.png +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/dc15_a01_case_b_dummy.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/dc15_a01_case_b_dummy.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/dc15_a01_case_f_dummy.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/dc15_a01_case_f_dummy.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/dc15_a01_case_m_dummy.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/dc15_a01_case_m_dummy.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/dc15_a01_horn_dummy.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/dc15_a01_horn_dummy.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/dc15_a01_led_cap2_dummy.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/dc15_a01_led_cap2_dummy.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/food_apple_01_1k.blend/food_apple_01_1k.obj +18045 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/food_apple_01_1k.blend/textures/food_apple_01_diff_1k.png +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/glasses_dolder_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/glasses_dolder_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/head_back_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/head_back_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/head_front_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/head_front_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/head_mic_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/head_mic_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/lens_cap_d30_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/lens_cap_d30_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/lens_cap_d40_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/lens_cap_d40_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/m12_fisheye_lens_1_8mm.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/m12_fisheye_lens_1_8mm.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/mp01062_stewart_arm_3.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/mp01062_stewart_arm_3.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/neck_reference_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/neck_reference_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/phs_1_7x20_5_dc10.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/phs_1_7x20_5_dc10.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/phs_1_7x20_5_dc10_1.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/phs_1_7x20_5_dc10_1.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/phs_1_7x20_5_dc10_2.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/phs_1_7x20_5_dc10_2.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/phs_1_7x20_5_dc10_3.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/phs_1_7x20_5_dc10_3.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/pp01102_arducam_carter.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/pp01102_arducam_carter.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/rubber_duck_toy_1k.blend/rubber_duck_toy_1k.obj +8940 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/rubber_duck_toy_1k.blend/textures/rubber_duck_toy_diff_1k.png +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/small_lens_d30.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/small_lens_d30.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/stewart_link_ball.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/stewart_link_ball.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/stewart_link_ball__2.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/stewart_link_ball__2.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/stewart_link_rod.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/stewart_link_rod.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/stewart_main_plate_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/stewart_main_plate_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/stewart_tricap_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/stewart_tricap_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/wooden_table_02_1k.blend/textures/wooden_table_02_diff_1k.png +0 -0
- reachy_mini/descriptions/reachy_mini/mjcf/assets/wooden_table_02_1k.blend/wooden_table_02_1k.obj +485 -0
- reachy_mini/descriptions/reachy_mini/mjcf/config.json +21 -0
- reachy_mini/descriptions/reachy_mini/mjcf/joints_properties.xml +29 -0
- reachy_mini/descriptions/reachy_mini/mjcf/reachy_mini.xml +642 -0
- reachy_mini/descriptions/reachy_mini/mjcf/reachy_mini.xml.bak +442 -0
- reachy_mini/descriptions/reachy_mini/mjcf/scene.xml +24 -0
- reachy_mini/descriptions/reachy_mini/mjcf/scenes/empty.xml +27 -0
- reachy_mini/descriptions/reachy_mini/mjcf/scenes/minimal.xml +132 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/5w_speaker.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/5w_speaker.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/antenna.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/antenna.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/antenna_body_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/antenna_body_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/antenna_holder_l_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/antenna_holder_l_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/antenna_holder_r_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/antenna_holder_r_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/antenna_interface_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/antenna_interface_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/arducam.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/arducam.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/arm.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/arm.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/b3b_eh.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/b3b_eh.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/b3b_eh_1.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/b3b_eh_1.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/ball.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/ball.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/bearing_85x110x13.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/bearing_85x110x13.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/big_lens.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/big_lens.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/big_lens_d40.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/big_lens_d40.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/body_down_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/body_down_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/body_foot_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/body_foot_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/body_top_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/body_top_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/body_turning_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/body_turning_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/bottom_body.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/bottom_body.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/bts2_m2_6x8.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/bts2_m2_6x8.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/collision/README.m +1 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/collision/coarse/body_top_3dprint_collider_back_0.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/collision/coarse/body_top_3dprint_collider_back_1.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/collision/coarse/body_top_3dprint_collider_back_2.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/collision/coarse/body_top_3dprint_collider_back_3.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/collision/coarse/body_top_3dprint_collider_front_0.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/collision/coarse/body_top_3dprint_collider_front_1.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/collision/coarse/body_top_3dprint_collider_front_2.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/collision/coarse/head_one_3dprint_collider_0.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/collision/fine/body_top_3dprint_collider_back_0.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/collision/fine/body_top_3dprint_collider_back_1.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/collision/fine/body_top_3dprint_collider_back_2.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/collision/fine/body_top_3dprint_collider_back_3.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/collision/fine/body_top_3dprint_collider_front_0.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/collision/fine/body_top_3dprint_collider_front_1.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/collision/fine/body_top_3dprint_collider_front_2.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/collision/fine/head_one_3dprint_collider_0.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/dc15_a01_case_b_dummy.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/dc15_a01_case_b_dummy.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/dc15_a01_case_f_dummy.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/dc15_a01_case_f_dummy.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/dc15_a01_case_m_dummy.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/dc15_a01_case_m_dummy.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/dc15_a01_horn_dummy.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/dc15_a01_horn_dummy.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/dc15_a01_led_cap2_dummy.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/dc15_a01_led_cap2_dummy.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/drive_palonier__configuration_default.part +14 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/drive_palonier__configuration_default.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/drive_palonier__configuration_simple_axe.part +14 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/drive_palonier__configuration_simple_axe.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/eye_support.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/eye_support.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/foot.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/foot.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/glasses_dolder_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/glasses_dolder_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/head_back_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/head_back_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/head_front_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/head_front_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/head_head_back.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/head_head_back.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/head_interface.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/head_interface.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/head_mic_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/head_mic_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/head_shell_front.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/head_shell_front.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/lens_cap_d30_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/lens_cap_d30_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/lens_cap_d40_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/lens_cap_d40_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/m12_fisheye_lens_1_8mm.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/m12_fisheye_lens_1_8mm.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/m12_lens.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/m12_lens.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/main_plate.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/main_plate.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/mid_plate.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/mid_plate.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/mp01062_stewart_arm_3.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/mp01062_stewart_arm_3.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/neck_reference_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/neck_reference_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/phs_1_7x20_5_dc10.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/phs_1_7x20_5_dc10.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/phs_1_7x20_5_dc10_1.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/phs_1_7x20_5_dc10_1.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/phs_1_7x20_5_dc10_2.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/phs_1_7x20_5_dc10_2.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/phs_1_7x20_5_dc10_3.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/phs_1_7x20_5_dc10_3.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/plateform.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/plateform.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp00xxx_stewart_rod.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp00xxx_stewart_rod.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01062_stewart_arm.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01062_stewart_arm.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01063_stewart_plateform.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01063_stewart_plateform.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01064_stewart_main_plate.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01064_stewart_main_plate.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01065_stewart_side_plate.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01065_stewart_side_plate.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01066_stewart_mid_plate.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01066_stewart_mid_plate.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01067_bottom_body.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01067_bottom_body.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01068_top_body.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01068_top_body.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01069_head_shell_front.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01069_head_shell_front.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01070_head_head_back.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01070_head_head_back.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01071_turning_bowl.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01071_turning_bowl.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01072_turning_end.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01072_turning_end.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01078_glasses.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01078_glasses.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01079_back_big_eye.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01079_back_big_eye.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01080_back_small_eye.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01080_back_small_eye.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01102_arducam_carter.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/pp01102_arducam_carter.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/rod.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/rod.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/shape.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/shape.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/side_plate.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/side_plate.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/small_lens.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/small_lens.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/small_lens_d30.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/small_lens_d30.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/stewart_link_ball.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/stewart_link_ball.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/stewart_link_ball__2.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/stewart_link_ball__2.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/stewart_link_rod.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/stewart_link_rod.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/stewart_main_plate_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/stewart_main_plate_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/stewart_tricap_3dprint.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/stewart_tricap_3dprint.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/test_antenna.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/test_antenna.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/test_antenna_body.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/test_antenna_body.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/top_body.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/top_body.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/turning_bowl.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/turning_bowl.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/uc_a37_rev_a_step.part +13 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/uc_a37_rev_a_step.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/wj_wk00_0122topcabinetcase_95__configuration_default.part +14 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/wj_wk00_0122topcabinetcase_95__configuration_default.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/wj_wk00_0122topcabinetcase_95__configuration_simple_axe.part +14 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/wj_wk00_0122topcabinetcase_95__configuration_simple_axe.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/wj_wk00_0123middlecase_56__configuration_default.part +14 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/wj_wk00_0123middlecase_56__configuration_default.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/wj_wk00_0123middlecase_56__configuration_simple_axe.part +14 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/wj_wk00_0123middlecase_56__configuration_simple_axe.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/wj_wk00_0124bottomcase_45__configuration_default.part +14 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/wj_wk00_0124bottomcase_45__configuration_default.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/wj_wk00_0124bottomcase_45__configuration_simple_axe.part +14 -0
- reachy_mini/descriptions/reachy_mini/urdf/assets/wj_wk00_0124bottomcase_45__configuration_simple_axe.stl +0 -0
- reachy_mini/descriptions/reachy_mini/urdf/config.json +18 -0
- reachy_mini/descriptions/reachy_mini/urdf/robot.urdf +3281 -0
- reachy_mini/descriptions/reachy_mini/urdf/robot.urdf.bak +3282 -0
- reachy_mini/descriptions/reachy_mini/urdf/robot_no_collision.urdf +2316 -0
- reachy_mini/descriptions/reachy_mini/urdf/robot_simple_collision.urdf +2399 -0
- reachy_mini/io/__init__.py +15 -0
- reachy_mini/io/abstract.py +70 -0
- reachy_mini/io/audio_ws.py +242 -0
- reachy_mini/io/protocol.py +44 -0
- reachy_mini/io/video_ws.py +135 -0
- reachy_mini/io/ws_controller.py +120 -0
- reachy_mini/io/zenoh_client.py +273 -0
- reachy_mini/io/zenoh_server.py +230 -0
- reachy_mini/kinematics/__init__.py +68 -0
- reachy_mini/kinematics/analytical_kinematics.py +151 -0
- reachy_mini/kinematics/nn_kinematics.py +109 -0
- reachy_mini/kinematics/placo_kinematics.py +656 -0
- reachy_mini/media/__init__.py +1 -0
- reachy_mini/media/audio_base.py +111 -0
- reachy_mini/media/audio_control_utils.py +455 -0
- reachy_mini/media/audio_gstreamer.py +272 -0
- reachy_mini/media/audio_sounddevice.py +321 -0
- reachy_mini/media/audio_utils.py +114 -0
- reachy_mini/media/camera_base.py +100 -0
- reachy_mini/media/camera_constants.py +152 -0
- reachy_mini/media/camera_gstreamer.py +231 -0
- reachy_mini/media/camera_opencv.py +89 -0
- reachy_mini/media/camera_utils.py +111 -0
- reachy_mini/media/media_manager.py +281 -0
- reachy_mini/media/webrtc_client_gstreamer.py +288 -0
- reachy_mini/media/webrtc_daemon.py +334 -0
- reachy_mini/motion/__init__.py +4 -0
- reachy_mini/motion/goto.py +71 -0
- reachy_mini/motion/move.py +43 -0
- reachy_mini/motion/recorded_move.py +146 -0
- reachy_mini/reachy_mini.py +753 -0
- reachy_mini/tools/reflash_motors.py +116 -0
- reachy_mini/tools/setup_motor.py +422 -0
- reachy_mini/tools/setup_motor_rpi.py +108 -0
- reachy_mini/utils/__init__.py +46 -0
- reachy_mini/utils/constants.py +9 -0
- reachy_mini/utils/hardware_config/__init__.py +1 -0
- reachy_mini/utils/hardware_config/parser.py +65 -0
- reachy_mini/utils/interpolation.py +227 -0
- reachy_mini/utils/parse_urdf_for_kinematics.py +110 -0
- reachy_mini/utils/rerun.py +320 -0
- reachy_mini/utils/wireless_version/__init__.py +1 -0
- reachy_mini/utils/wireless_version/startup_check.py +144 -0
- reachy_mini/utils/wireless_version/update.py +20 -0
- reachy_mini/utils/wireless_version/update_available.py +61 -0
- reachy_mini/utils/wireless_version/utils.py +39 -0
- reachy_mini-1.2.5rc1.dist-info/METADATA +161 -0
- reachy_mini-1.2.5rc1.dist-info/RECORD +479 -0
- reachy_mini-1.2.5rc1.dist-info/WHEEL +5 -0
- reachy_mini-1.2.5rc1.dist-info/entry_points.txt +4 -0
- reachy_mini-1.2.5rc1.dist-info/licenses/LICENSE +201 -0
- reachy_mini-1.2.5rc1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
[project]
|
|
7
|
+
name = "{{ entrypoint_name }}"
|
|
8
|
+
version = "0.1.0"
|
|
9
|
+
description = "Add your description here"
|
|
10
|
+
readme = "README.md"
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
dependencies = [
|
|
13
|
+
"reachy-mini"
|
|
14
|
+
]
|
|
15
|
+
keywords = ["reachy-mini-app"]
|
|
16
|
+
|
|
17
|
+
[project.entry-points."reachy_mini_apps"]
|
|
18
|
+
{{ entrypoint_name }} = "{{ module_name }}.main:{{ class_name }}"
|
|
19
|
+
|
|
20
|
+
[tool.setuptools]
|
|
21
|
+
package-dir = { "" = "." }
|
|
22
|
+
include-package-data = true
|
|
23
|
+
|
|
24
|
+
[tool.setuptools.packages.find]
|
|
25
|
+
where = ["."]
|
|
26
|
+
|
|
27
|
+
[tool.setuptools.package-data]
|
|
28
|
+
{{ module_name }} = ["**/*"] # Also include all non-.py files
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="UTF-8">
|
|
6
|
+
<title>Reachy Mini example app template</title>
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
8
|
+
<link rel="stylesheet" href="/static/style.css">
|
|
9
|
+
</head>
|
|
10
|
+
|
|
11
|
+
<body>
|
|
12
|
+
<h1>Reachy Mini – Control Panel</h1>
|
|
13
|
+
|
|
14
|
+
<div id="controls">
|
|
15
|
+
<label style="display:flex; align-items:center; gap:8px;">
|
|
16
|
+
<input type="checkbox" id="antenna-checkbox" checked>
|
|
17
|
+
Antennas
|
|
18
|
+
</label>
|
|
19
|
+
|
|
20
|
+
<button id="sound-btn">Play Sound</button>
|
|
21
|
+
</div>
|
|
22
|
+
|
|
23
|
+
<div id="status">Antennas status: running</div>
|
|
24
|
+
<script src="/static/main.js"></script>
|
|
25
|
+
</body>
|
|
26
|
+
|
|
27
|
+
</html>
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
let antennasEnabled = true;
|
|
2
|
+
|
|
3
|
+
async function updateAntennasState(enabled) {
|
|
4
|
+
try {
|
|
5
|
+
const resp = await fetch("/antennas", {
|
|
6
|
+
method: "POST",
|
|
7
|
+
headers: { "Content-Type": "application/json" },
|
|
8
|
+
body: JSON.stringify({ enabled }),
|
|
9
|
+
});
|
|
10
|
+
const data = await resp.json();
|
|
11
|
+
antennasEnabled = data.antennas_enabled;
|
|
12
|
+
updateUI();
|
|
13
|
+
} catch (e) {
|
|
14
|
+
document.getElementById("status").textContent = "Backend error";
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
async function playSound() {
|
|
19
|
+
try {
|
|
20
|
+
await fetch("/play_sound", { method: "POST" });
|
|
21
|
+
} catch (e) {
|
|
22
|
+
console.error("Error triggering sound:", e);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
function updateUI() {
|
|
27
|
+
const checkbox = document.getElementById("antenna-checkbox");
|
|
28
|
+
const status = document.getElementById("status");
|
|
29
|
+
|
|
30
|
+
checkbox.checked = antennasEnabled;
|
|
31
|
+
|
|
32
|
+
if (antennasEnabled) {
|
|
33
|
+
status.textContent = "Antennas status: running";
|
|
34
|
+
} else {
|
|
35
|
+
status.textContent = "Antennas status: stopped";
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
document.getElementById("antenna-checkbox").addEventListener("change", (e) => {
|
|
40
|
+
updateAntennasState(e.target.checked);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
document.getElementById("sound-btn").addEventListener("click", () => {
|
|
44
|
+
playSound();
|
|
45
|
+
});
|
|
46
|
+
|
|
47
|
+
updateUI();
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
body {
|
|
2
|
+
font-family: sans-serif;
|
|
3
|
+
margin: 24px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
#sound-btn {
|
|
7
|
+
padding: 10px 20px;
|
|
8
|
+
border: none;
|
|
9
|
+
color: white;
|
|
10
|
+
cursor: pointer;
|
|
11
|
+
font-size: 16px;
|
|
12
|
+
border-radius: 6px;
|
|
13
|
+
background-color: #3498db;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
#status {
|
|
17
|
+
margin-top: 16px;
|
|
18
|
+
font-weight: bold;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
#controls {
|
|
22
|
+
display: flex;
|
|
23
|
+
align-items: center;
|
|
24
|
+
gap: 20px;
|
|
25
|
+
}
|
|
@@ -0,0 +1,411 @@
|
|
|
1
|
+
* {
|
|
2
|
+
margin: 0;
|
|
3
|
+
padding: 0;
|
|
4
|
+
box-sizing: border-box;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
body {
|
|
8
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
9
|
+
line-height: 1.6;
|
|
10
|
+
color: #333;
|
|
11
|
+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
12
|
+
min-height: 100vh;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.hero {
|
|
16
|
+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
17
|
+
color: white;
|
|
18
|
+
padding: 4rem 2rem;
|
|
19
|
+
text-align: center;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.hero-content {
|
|
23
|
+
max-width: 800px;
|
|
24
|
+
margin: 0 auto;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.app-icon {
|
|
28
|
+
font-size: 4rem;
|
|
29
|
+
margin-bottom: 1rem;
|
|
30
|
+
display: inline-block;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.hero h1 {
|
|
34
|
+
font-size: 3rem;
|
|
35
|
+
font-weight: 700;
|
|
36
|
+
margin-bottom: 1rem;
|
|
37
|
+
background: linear-gradient(45deg, #fff, #f0f9ff);
|
|
38
|
+
background-clip: text;
|
|
39
|
+
-webkit-background-clip: text;
|
|
40
|
+
-webkit-text-fill-color: transparent;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.tagline {
|
|
44
|
+
font-size: 1.25rem;
|
|
45
|
+
opacity: 0.9;
|
|
46
|
+
max-width: 600px;
|
|
47
|
+
margin: 0 auto;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.container {
|
|
51
|
+
max-width: 1200px;
|
|
52
|
+
margin: 0 auto;
|
|
53
|
+
padding: 0 2rem;
|
|
54
|
+
position: relative;
|
|
55
|
+
z-index: 2;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.main-card {
|
|
59
|
+
background: white;
|
|
60
|
+
border-radius: 20px;
|
|
61
|
+
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
|
|
62
|
+
margin-top: -2rem;
|
|
63
|
+
overflow: hidden;
|
|
64
|
+
margin-bottom: 3rem;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.app-preview {
|
|
68
|
+
background: linear-gradient(135deg, #1e3a8a, #3b82f6);
|
|
69
|
+
padding: 3rem;
|
|
70
|
+
color: white;
|
|
71
|
+
text-align: center;
|
|
72
|
+
position: relative;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.preview-image {
|
|
76
|
+
background: #000;
|
|
77
|
+
border-radius: 15px;
|
|
78
|
+
padding: 2rem;
|
|
79
|
+
max-width: 500px;
|
|
80
|
+
margin: 0 auto;
|
|
81
|
+
position: relative;
|
|
82
|
+
overflow: hidden;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.camera-feed {
|
|
86
|
+
font-size: 4rem;
|
|
87
|
+
margin-bottom: 1rem;
|
|
88
|
+
opacity: 0.7;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.detection-overlay {
|
|
92
|
+
position: absolute;
|
|
93
|
+
top: 50%;
|
|
94
|
+
left: 50%;
|
|
95
|
+
transform: translate(-50%, -50%);
|
|
96
|
+
width: 100%;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.bbox {
|
|
100
|
+
background: rgba(34, 197, 94, 0.9);
|
|
101
|
+
color: white;
|
|
102
|
+
padding: 0.5rem 1rem;
|
|
103
|
+
border-radius: 8px;
|
|
104
|
+
font-size: 0.9rem;
|
|
105
|
+
font-weight: 600;
|
|
106
|
+
margin: 0.5rem;
|
|
107
|
+
display: inline-block;
|
|
108
|
+
border: 2px solid #22c55e;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.app-details {
|
|
112
|
+
padding: 3rem;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.app-details h2 {
|
|
116
|
+
font-size: 2rem;
|
|
117
|
+
color: #1e293b;
|
|
118
|
+
margin-bottom: 2rem;
|
|
119
|
+
text-align: center;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.template-info {
|
|
123
|
+
display: grid;
|
|
124
|
+
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
125
|
+
gap: 2rem;
|
|
126
|
+
margin-bottom: 3rem;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.info-box {
|
|
130
|
+
background: #f0f9ff;
|
|
131
|
+
border: 2px solid #e0f2fe;
|
|
132
|
+
border-radius: 12px;
|
|
133
|
+
padding: 2rem;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.info-box h3 {
|
|
137
|
+
color: #0c4a6e;
|
|
138
|
+
margin-bottom: 1rem;
|
|
139
|
+
font-size: 1.2rem;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.info-box p {
|
|
143
|
+
color: #0369a1;
|
|
144
|
+
line-height: 1.6;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.how-to-use {
|
|
148
|
+
background: #fefce8;
|
|
149
|
+
border: 2px solid #fde047;
|
|
150
|
+
border-radius: 12px;
|
|
151
|
+
padding: 2rem;
|
|
152
|
+
margin-top: 3rem;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.how-to-use h3 {
|
|
156
|
+
color: #a16207;
|
|
157
|
+
margin-bottom: 1.5rem;
|
|
158
|
+
font-size: 1.3rem;
|
|
159
|
+
text-align: center;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.steps {
|
|
163
|
+
display: flex;
|
|
164
|
+
flex-direction: column;
|
|
165
|
+
gap: 1.5rem;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.step {
|
|
169
|
+
display: flex;
|
|
170
|
+
align-items: flex-start;
|
|
171
|
+
gap: 1rem;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.step-number {
|
|
175
|
+
background: #eab308;
|
|
176
|
+
color: white;
|
|
177
|
+
width: 2rem;
|
|
178
|
+
height: 2rem;
|
|
179
|
+
border-radius: 50%;
|
|
180
|
+
display: flex;
|
|
181
|
+
align-items: center;
|
|
182
|
+
justify-content: center;
|
|
183
|
+
font-weight: bold;
|
|
184
|
+
flex-shrink: 0;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.step h4 {
|
|
188
|
+
color: #a16207;
|
|
189
|
+
margin-bottom: 0.5rem;
|
|
190
|
+
font-size: 1.1rem;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.step p {
|
|
194
|
+
color: #ca8a04;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.download-card {
|
|
198
|
+
background: white;
|
|
199
|
+
border-radius: 20px;
|
|
200
|
+
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
|
|
201
|
+
padding: 3rem;
|
|
202
|
+
text-align: center;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.download-card h2 {
|
|
206
|
+
font-size: 2rem;
|
|
207
|
+
color: #1e293b;
|
|
208
|
+
margin-bottom: 1rem;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.download-card>p {
|
|
212
|
+
color: #64748b;
|
|
213
|
+
font-size: 1.1rem;
|
|
214
|
+
margin-bottom: 2rem;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.dashboard-config {
|
|
218
|
+
margin-bottom: 2rem;
|
|
219
|
+
text-align: left;
|
|
220
|
+
max-width: 400px;
|
|
221
|
+
margin-left: auto;
|
|
222
|
+
margin-right: auto;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.dashboard-config label {
|
|
226
|
+
display: block;
|
|
227
|
+
color: #374151;
|
|
228
|
+
font-weight: 600;
|
|
229
|
+
margin-bottom: 0.5rem;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.dashboard-config input {
|
|
233
|
+
width: 100%;
|
|
234
|
+
padding: 0.75rem 1rem;
|
|
235
|
+
border: 2px solid #e5e7eb;
|
|
236
|
+
border-radius: 8px;
|
|
237
|
+
font-size: 0.95rem;
|
|
238
|
+
transition: border-color 0.2s;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.dashboard-config input:focus {
|
|
242
|
+
outline: none;
|
|
243
|
+
border-color: #667eea;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.install-btn {
|
|
247
|
+
background: linear-gradient(135deg, #667eea, #764ba2);
|
|
248
|
+
color: white;
|
|
249
|
+
border: none;
|
|
250
|
+
padding: 1.25rem 3rem;
|
|
251
|
+
border-radius: 16px;
|
|
252
|
+
font-size: 1.2rem;
|
|
253
|
+
font-weight: 700;
|
|
254
|
+
cursor: pointer;
|
|
255
|
+
transition: all 0.3s ease;
|
|
256
|
+
display: inline-flex;
|
|
257
|
+
align-items: center;
|
|
258
|
+
gap: 0.75rem;
|
|
259
|
+
margin-bottom: 2rem;
|
|
260
|
+
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.install-btn:hover:not(:disabled) {
|
|
264
|
+
transform: translateY(-3px);
|
|
265
|
+
box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.install-btn:disabled {
|
|
269
|
+
opacity: 0.7;
|
|
270
|
+
cursor: not-allowed;
|
|
271
|
+
transform: none;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.manual-option {
|
|
275
|
+
background: #f8fafc;
|
|
276
|
+
border-radius: 12px;
|
|
277
|
+
padding: 2rem;
|
|
278
|
+
margin-top: 2rem;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.manual-option h3 {
|
|
282
|
+
color: #1e293b;
|
|
283
|
+
margin-bottom: 1rem;
|
|
284
|
+
font-size: 1.2rem;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.manual-option>p {
|
|
288
|
+
color: #64748b;
|
|
289
|
+
margin-bottom: 1rem;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.btn-icon {
|
|
293
|
+
font-size: 1.1rem;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.install-status {
|
|
297
|
+
padding: 1rem;
|
|
298
|
+
border-radius: 8px;
|
|
299
|
+
font-size: 0.9rem;
|
|
300
|
+
text-align: center;
|
|
301
|
+
display: none;
|
|
302
|
+
margin-top: 1rem;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.install-status.success {
|
|
306
|
+
background: #dcfce7;
|
|
307
|
+
color: #166534;
|
|
308
|
+
border: 1px solid #bbf7d0;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.install-status.error {
|
|
312
|
+
background: #fef2f2;
|
|
313
|
+
color: #dc2626;
|
|
314
|
+
border: 1px solid #fecaca;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.install-status.loading {
|
|
318
|
+
background: #dbeafe;
|
|
319
|
+
color: #1d4ed8;
|
|
320
|
+
border: 1px solid #bfdbfe;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.install-status.info {
|
|
324
|
+
background: #e0f2fe;
|
|
325
|
+
color: #0369a1;
|
|
326
|
+
border: 1px solid #7dd3fc;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.manual-install {
|
|
330
|
+
background: #1f2937;
|
|
331
|
+
border-radius: 8px;
|
|
332
|
+
padding: 1rem;
|
|
333
|
+
margin-bottom: 1rem;
|
|
334
|
+
display: flex;
|
|
335
|
+
align-items: center;
|
|
336
|
+
gap: 1rem;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.manual-install code {
|
|
340
|
+
color: #10b981;
|
|
341
|
+
font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
|
|
342
|
+
font-size: 0.85rem;
|
|
343
|
+
flex: 1;
|
|
344
|
+
overflow-x: auto;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.copy-btn {
|
|
348
|
+
background: #374151;
|
|
349
|
+
color: white;
|
|
350
|
+
border: none;
|
|
351
|
+
padding: 0.5rem 1rem;
|
|
352
|
+
border-radius: 6px;
|
|
353
|
+
font-size: 0.8rem;
|
|
354
|
+
cursor: pointer;
|
|
355
|
+
transition: background-color 0.2s;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.copy-btn:hover {
|
|
359
|
+
background: #4b5563;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.manual-steps {
|
|
363
|
+
color: #6b7280;
|
|
364
|
+
font-size: 0.9rem;
|
|
365
|
+
line-height: 1.8;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.footer {
|
|
369
|
+
text-align: center;
|
|
370
|
+
padding: 2rem;
|
|
371
|
+
color: white;
|
|
372
|
+
opacity: 0.8;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.footer a {
|
|
376
|
+
color: white;
|
|
377
|
+
text-decoration: none;
|
|
378
|
+
font-weight: 600;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.footer a:hover {
|
|
382
|
+
text-decoration: underline;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
/* Responsive Design */
|
|
386
|
+
@media (max-width: 768px) {
|
|
387
|
+
.hero {
|
|
388
|
+
padding: 2rem 1rem;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.hero h1 {
|
|
392
|
+
font-size: 2rem;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.container {
|
|
396
|
+
padding: 0 1rem;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.app-details,
|
|
400
|
+
.download-card {
|
|
401
|
+
padding: 2rem;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.features-grid {
|
|
405
|
+
grid-template-columns: 1fr;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.download-options {
|
|
409
|
+
grid-template-columns: 1fr;
|
|
410
|
+
}
|
|
411
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"""Utility functions for Reachy Mini apps manager."""
|
|
2
|
+
|
|
3
|
+
import asyncio
|
|
4
|
+
import logging
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
async def running_command(command: list[str], logger: logging.Logger) -> int:
|
|
8
|
+
"""Run a shell command and stream its output to the provided logger."""
|
|
9
|
+
logger.info(f"Running command: {' '.join(command)}")
|
|
10
|
+
|
|
11
|
+
proc = await asyncio.create_subprocess_exec(
|
|
12
|
+
*command, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
assert proc.stdout is not None # for mypy
|
|
16
|
+
assert proc.stderr is not None # for mypy
|
|
17
|
+
|
|
18
|
+
# Stream output line by line
|
|
19
|
+
while True:
|
|
20
|
+
line = await proc.stdout.readline()
|
|
21
|
+
if not line:
|
|
22
|
+
break
|
|
23
|
+
logger.info(line.decode().rstrip())
|
|
24
|
+
|
|
25
|
+
# Also log any remaining stderr
|
|
26
|
+
err = await proc.stderr.read()
|
|
27
|
+
if err:
|
|
28
|
+
logger.error(err.decode().rstrip())
|
|
29
|
+
|
|
30
|
+
return await proc.wait()
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
version: beta
|
|
2
|
+
|
|
3
|
+
serial:
|
|
4
|
+
baudrate: 1000000
|
|
5
|
+
|
|
6
|
+
# Limits measured on the robot (in degrees)
|
|
7
|
+
# s1
|
|
8
|
+
# lower : -48° : -546
|
|
9
|
+
# upper : +80° : 910
|
|
10
|
+
|
|
11
|
+
# s2
|
|
12
|
+
# lower: +70° : 796
|
|
13
|
+
# upper: -80° : -910
|
|
14
|
+
|
|
15
|
+
# s3
|
|
16
|
+
# lower: -48° : -546
|
|
17
|
+
# upper: +80° : 910
|
|
18
|
+
|
|
19
|
+
# s4
|
|
20
|
+
# lower: +48° : 546
|
|
21
|
+
# upper: -80° : -910
|
|
22
|
+
|
|
23
|
+
# s5
|
|
24
|
+
# lower: -70° : -796
|
|
25
|
+
# upper: +80° : 910
|
|
26
|
+
|
|
27
|
+
# s6
|
|
28
|
+
# lower : +48° : 546
|
|
29
|
+
# upper : -80° : -910
|
|
30
|
+
|
|
31
|
+
# s1:
|
|
32
|
+
# lower: 2048 - 546 : 1502
|
|
33
|
+
# upper: 2048 + 910 : 2958
|
|
34
|
+
|
|
35
|
+
# s2:
|
|
36
|
+
# lower: 2048 - 910 : 1138
|
|
37
|
+
# upper: 2048 + 796 : 2844
|
|
38
|
+
|
|
39
|
+
# s3:
|
|
40
|
+
# lower: 2048 - 546 : 1502
|
|
41
|
+
# upper: 2048 + 910 : 2958
|
|
42
|
+
|
|
43
|
+
# s4:
|
|
44
|
+
# lower: 2048 - 910 : 1138
|
|
45
|
+
# upper: 2048 + 546 : 2594
|
|
46
|
+
|
|
47
|
+
# s5:
|
|
48
|
+
# lower: 2048 - 796 : 1252
|
|
49
|
+
# upper: 2048 + 910 : 2958
|
|
50
|
+
|
|
51
|
+
# s6:
|
|
52
|
+
# lower: 2048 - 910 : 1138
|
|
53
|
+
# upper: 2048 + 546 : 2594
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
motors:
|
|
57
|
+
- body_rotation:
|
|
58
|
+
id: 10
|
|
59
|
+
offset: 0
|
|
60
|
+
lower_limit: 0
|
|
61
|
+
upper_limit: 4095
|
|
62
|
+
return_delay_time: 0
|
|
63
|
+
shutdown_error: 52
|
|
64
|
+
operating_mode: 3
|
|
65
|
+
pid:
|
|
66
|
+
- 200
|
|
67
|
+
- 0
|
|
68
|
+
- 0
|
|
69
|
+
- stewart_1:
|
|
70
|
+
id: 11
|
|
71
|
+
offset: 1024
|
|
72
|
+
lower_limit: 1502
|
|
73
|
+
upper_limit: 2958
|
|
74
|
+
return_delay_time: 0
|
|
75
|
+
shutdown_error: 52
|
|
76
|
+
operating_mode: 3
|
|
77
|
+
pid:
|
|
78
|
+
- 300
|
|
79
|
+
- 0
|
|
80
|
+
- 0
|
|
81
|
+
- stewart_2:
|
|
82
|
+
id: 12
|
|
83
|
+
offset: -1024
|
|
84
|
+
lower_limit: 1138
|
|
85
|
+
upper_limit: 2844
|
|
86
|
+
return_delay_time: 0
|
|
87
|
+
shutdown_error: 52
|
|
88
|
+
operating_mode: 3
|
|
89
|
+
pid:
|
|
90
|
+
- 300
|
|
91
|
+
- 0
|
|
92
|
+
- 0
|
|
93
|
+
- stewart_3:
|
|
94
|
+
id: 13
|
|
95
|
+
offset: 1024
|
|
96
|
+
lower_limit: 1502
|
|
97
|
+
upper_limit: 2958
|
|
98
|
+
return_delay_time: 0
|
|
99
|
+
shutdown_error: 52
|
|
100
|
+
operating_mode: 3
|
|
101
|
+
pid:
|
|
102
|
+
- 300
|
|
103
|
+
- 0
|
|
104
|
+
- 0
|
|
105
|
+
- stewart_4:
|
|
106
|
+
id: 14
|
|
107
|
+
offset: -1024
|
|
108
|
+
lower_limit: 1138
|
|
109
|
+
upper_limit: 2594
|
|
110
|
+
return_delay_time: 0
|
|
111
|
+
shutdown_error: 52
|
|
112
|
+
operating_mode: 3
|
|
113
|
+
pid:
|
|
114
|
+
- 300
|
|
115
|
+
- 0
|
|
116
|
+
- 0
|
|
117
|
+
- stewart_5:
|
|
118
|
+
id: 15
|
|
119
|
+
offset: 1024
|
|
120
|
+
lower_limit: 1252
|
|
121
|
+
upper_limit: 2958
|
|
122
|
+
return_delay_time: 0
|
|
123
|
+
shutdown_error: 52
|
|
124
|
+
operating_mode: 3
|
|
125
|
+
pid:
|
|
126
|
+
- 300
|
|
127
|
+
- 0
|
|
128
|
+
- 0
|
|
129
|
+
- stewart_6:
|
|
130
|
+
id: 16
|
|
131
|
+
offset: -1024
|
|
132
|
+
lower_limit: 1138
|
|
133
|
+
upper_limit: 2594
|
|
134
|
+
return_delay_time: 0
|
|
135
|
+
shutdown_error: 52
|
|
136
|
+
operating_mode: 3
|
|
137
|
+
pid:
|
|
138
|
+
- 300
|
|
139
|
+
- 0
|
|
140
|
+
- 0
|
|
141
|
+
- right_antenna:
|
|
142
|
+
id: 17
|
|
143
|
+
offset: 0
|
|
144
|
+
lower_limit: 0
|
|
145
|
+
upper_limit: 4095
|
|
146
|
+
return_delay_time: 0
|
|
147
|
+
shutdown_error: 52
|
|
148
|
+
operating_mode: 3
|
|
149
|
+
pid:
|
|
150
|
+
- 200
|
|
151
|
+
- 0
|
|
152
|
+
- 0
|
|
153
|
+
- left_antenna:
|
|
154
|
+
id: 18
|
|
155
|
+
offset: 0
|
|
156
|
+
lower_limit: 0
|
|
157
|
+
upper_limit: 4095
|
|
158
|
+
return_delay_time: 0
|
|
159
|
+
shutdown_error: 52
|
|
160
|
+
operating_mode: 3
|
|
161
|
+
pid:
|
|
162
|
+
- 200
|
|
163
|
+
- 0
|
|
164
|
+
- 0
|