From c50abb38c89451f07ced8687a488105b85064b31 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Jun 2025 22:10:29 +0900 Subject: [PATCH 1/2] build(deps): bump pytest from 8.4.0 to 8.4.1 in /requirements (#1240) Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.4.0 to 8.4.1. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.4.0...8.4.1) --- updated-dependencies: - dependency-name: pytest dependency-version: 8.4.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/requirements.txt b/requirements/requirements.txt index ce89e2f2db..30458e03d1 100644 --- a/requirements/requirements.txt +++ b/requirements/requirements.txt @@ -3,7 +3,7 @@ scipy == 1.15.2 matplotlib == 3.10.1 cvxpy == 1.6.6 ecos == 2.0.14 -pytest == 8.4.0 # For unit test +pytest == 8.4.1 # For unit test pytest-xdist == 3.7.0 # For unit test mypy == 1.16.1 # For unit test ruff == 0.12.0 # For unit test From e8c6a0f2d81d96e503a7924beadc174b7e73f470 Mon Sep 17 00:00:00 2001 From: Viral Panchal <53462443+Viralpanchal7899@users.noreply.github.com> Date: Fri, 27 Jun 2025 09:12:20 -0400 Subject: [PATCH 2/2] Enhance external sensors documentation. (#1236) * add: external sensors documentation * add a line --- docs/modules/12_appendix/external_sensors_main.rst | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/docs/modules/12_appendix/external_sensors_main.rst b/docs/modules/12_appendix/external_sensors_main.rst index 3597418150..b7caaf2c3a 100644 --- a/docs/modules/12_appendix/external_sensors_main.rst +++ b/docs/modules/12_appendix/external_sensors_main.rst @@ -10,9 +10,7 @@ Therefore, we will provide an overview. Introduction ------------ -In recent years, the application of robotic technology has advanced, -particularly in areas such as autonomous vehicles and disaster response robots. -A crucial element in these technologies is external recognition—the robot's ability to understand its surrounding environment, identify safe zones, and detect moving objects using onboard sensors. Achieving effective external recognition involves various techniques, but equally important is the selection of appropriate sensors. Robots, like the sensors they employ, come in many forms, but external recognition sensors can be broadly categorized into three types. Developing an advanced external recognition system requires a thorough understanding of each sensor's principles and characteristics to determine their optimal application. This article summarizes the principles and features of these sensors for personal study purposes. +In recent years, the application of robotic technology has advanced, particularly in areas such as autonomous vehicles and disaster response robots. A crucial element in these technologies is external recognition—the robot's ability to understand its surrounding environment, identify safe zones, and detect moving objects using onboard sensors. Achieving effective external recognition involves various techniques, but equally important is the selection of appropriate sensors. Robots, like the sensors they employ, come in many forms, but external recognition sensors can be broadly categorized into three types. Developing an advanced external recognition system requires a thorough understanding of each sensor's principles and characteristics to determine their optimal application. This article summarizes the principles and features of these sensors for personal study purposes. Laser Sensors ------------- @@ -22,7 +20,7 @@ Laser sensors measure distances by utilizing light, commonly referred to as Ligh Radar Sensors ------------- -TBD +Radar measures distances using radio waves, commonly referred to as Radio Detection and Ranging (RADAR). It operates by transmitting radio signals towards an object and calculating the distance based on the time it takes for the reflected waves to return, using the speed of radio waves as a constant. Monocular Cameras @@ -59,4 +57,9 @@ Ultrasonic sensors are commonly used in indoor robots and some automotive autono References ---------- -TBD +- Wikipedia articles: + + - `Lidar Sensors `_ + - `Radar Sensors `_ + - `Stereo Cameras `_ + - `Ultrasonic Sensors `_ \ No newline at end of file