Giter Site home page Giter Site logo

tonyrobotics / roboware-studio Goto Github PK

View Code? Open in Web Editor NEW
245.0 245.0 93.0 53.95 MB

An IDE environment for ROS development.

Home Page: http://www.roboware.me

License: BSD 3-Clause "New" or "Revised" License

JavaScript 13.90% TypeScript 50.47% Inno Setup 0.44% Python 10.82% C 12.50% C++ 4.00% Shell 0.06% Go 0.01% Objective-C 0.01% C# 0.05% Rust 0.01% Batchfile 0.02% HTML 5.84% Makefile 0.01% CSS 1.89%
ide roboware-studio ros

roboware-studio's People

Contributors

tony-robotics avatar uli2k avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

roboware-studio's Issues

出现Failed to load MI Debugger该怎么解决

请问出现Failed to load MI Debugger该怎么解决? 无法debug

Failed to load MI Debugger: "/home/jcl/TX/src/xrobot_base/launch/xrobot_odom_encoder.launch": not in executable format: File format not recognized (from file-exec-and-symbols "/home/jcl/TX/src/xrobot_base/launch/xrobot_odom_encoder.launch")

how can i install it?

HI im new in ROS WORLD and i read about your IDE DEVELOPMENT , but i dont know how can i install it

bash: catkin: command not found

Version 1.2.0
Commit dcd7482df29ff9357bee10e008adef2fc475ac43
Date 2018-04-26T02:24:41.213Z
Shell 1.6.6
Renderer 56.0.2924.87
Node 7.4.0
Steps to Reproduce:

  1. Select ROS File or ROS Node
  2. Click on Build

bash: catkin: command not found

How to debug roslaunch with IDE RoboWare or Visual Code(RotorS MAV gazebo simulator)?

Hello guys,

I installed RotorS the MAV Gazebo simulator and it's worked fine.( link for RotorS)
but a trie use Debug in IDE RoboWare and i don't have success how to debug launch file witch RoboWare or Visual Code?
Thank's guys

My launch this file: ~/catkin_ws/src/rotors_simulator/rotors_gazebo/launch/mav_hovering_example_with_vi_sensor.launch

image description

My launch file launch in this exactly moment:

<launch>
 <arg name="mav_name" default="firefly"/>
 <arg name="world_name" default="basic"/>
 <arg name="enable_logging" default="true" />
 <arg name="enable_ground_truth" default="true" />
 <arg name="log_file" default="$(arg mav_name)" />

<env name="GAZEBO_MODEL_PATH" value="${GAZEBO_MODEL_PATH}:$(find rotors_gazebo)/models"/>
<env name="GAZEBO_RESOURCE_PATH" value="${GAZEBO_RESOURCE_PATH}:$(find rotors_gazebo)/models"/>
<include file="$(find gazebo_ros)/launch/empty_world.launch">
   <arg name="world_name" value="$(find rotors_gazebo)/worlds/$(arg world_name).world" />
   <arg name="debug" value="true"/>
   <arg name="paused" value="true"/>
<!-- <arg name="gui" value="false"/> -->
</include>

<group ns="$(arg mav_name)">


 <include file="$(find rotors_gazebo)/launch/spawn_mav.launch">
      <arg name="mav_name" value="$(arg mav_name)" />
      <arg name="model" value="$(find rotors_description)/urdf/mav_with_vi_sensor.gazebo" />
      <arg name="enable_logging" value="$(arg enable_logging)" />
      <arg name="enable_ground_truth" value="$(arg enable_ground_truth)" />
      <arg name="log_file" value="$(arg log_file)"/>
    </include>
    <node name="lee_position_controller_node" pkg="rotors_control" type="lee_position_controller_node" output="screen">
      <rosparam command="load" file="$(find rotors_gazebo)/resource/lee_controller_$(arg mav_name).yaml" />
      <rosparam command="load" file="$(find rotors_gazebo)/resource/$(arg mav_name).yaml" />
      <remap from="odometry" to="odometry_sensor1/odometry" />
    </node>
    <node name="hovering_example" pkg="rotors_gazebo" type="hovering_example" output="screen"/>
    <node name="robot_state_publisher" pkg="robot_state_publisher" type="robot_state_publisher" />
    <node name="joint_state_publisher" pkg="joint_state_publisher" type="joint_state_publisher" />
  </group>
</launch>

My configuration debug in Roboware(launch.json)

{
	"version": "0.2.0",
	"configurations": [
		{
			"name": "C++",
			"type": "gdb",
			"request": "launch",
			"target": "${file}",
			"cwd": "${workspaceRoot}",
			"arguments": "roscore"
		},
		{
			"name": "C++ (remote)",
			"type": "gdb",
			"request": "launch",
			"target": "dev${relativeFile}",
			"cwd": "${workspaceRoot}",
			"ssh": {
				"host": "remotehost",
				"user": "remoteuser",
				"keyfile": "/home/user/.ssh/id_rsa",
				"cwd": "/home/remote/ws"
			}
		},
		{
			"name": "Python",
			"type": "python",
			"request": "launch",
			"stopOnEntry": true,
			"pythonPath": "${config:python.pythonPath}",
			"program": "${file}",
			"debugOptions": [
				"WaitOnAbnormalExit",
				"WaitOnNormalExit",
				"RedirectOutput"
			]
		}
	]
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.