feature/multi-robots-types #12

Merged
aqua3 merged 20 commits from feature/multi-robots-types into master 2024-12-05 11:36:57 -04:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit 25bf2267d9 - Show all commits

3
.env
View File

@ -7,6 +7,7 @@ MAVROS1_PORT=14561
FDM_PORT_IN=9002
GSTREAMER_UDP_PORT=5600
ROS_MASTER_URI="http://0.0.0.0:11311"
RMW_IMPLEMENTATION=rmw_cyclonedds_cpp

This has no effect

This has no effect
ARDUPILOT_VEHICLE="-v copter -f gazebo-mu --model=JSON -L CitadelHill"
@ -16,4 +17,4 @@ DRONE_MODEL="spiri_mu"
SIM_DRONE_COUNT=1
GCS_PORT=14550
GCS_PORT=14550

View File

@ -117,7 +117,7 @@ class Spirimu(Robot):
robots.add(self)
#Ros doesn't like dashes in node names
self.robot_name = f"{self.robot_type}_{self.sysid}".replace("-","_")
self.world_name = "citadel_hill"
self.wold_name = os.environ.get("WORLD_NAME", "citadel_hill")

Not sure if this class variable has any effect in the code, and it has a typo

Not sure if this class variable has any effect in the code, and it has a typo
@classmethod
async def launch_widget(cls, robots_widget):