ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

EDE's profile - activity

2020-11-10 12:06:30 -0500 received badge  Enthusiast
2020-10-24 07:56:59 -0500 answered a question Wiki mirror missing wiki pages

I confirm. Mirrored Wikis allmost are empty. I don't remember in which log I saw the error. But it was somehow connected

2020-10-19 11:23:44 -0500 received badge  Supporter (source)
2015-06-03 10:19:39 -0500 received badge  Taxonomist
2015-02-25 13:59:34 -0500 received badge  Nice Question (source)
2014-11-04 18:38:53 -0500 received badge  Famous Question (source)
2014-08-14 08:45:38 -0500 asked a question rtabmap ros installation

I try to follow this instructions: rtabmap site. And i haven't any errors, but when i try to run this: roslaunch rtabmap rgbd_mapping.launch I got this: [rgbd_mapping.launch] is neither a launch file in package [rtabmap] nor is [rtabmap] a launch file name I think i should do anything else after catkin_make?

2014-08-03 01:44:18 -0500 received badge  Notable Question (source)
2014-07-10 13:24:41 -0500 received badge  Popular Question (source)
2014-07-06 00:55:41 -0500 received badge  Student (source)
2014-07-05 06:07:05 -0500 asked a question Connecting roomba through arduino to turtlebot

Hello, I want connect roomba 620 to turtlebot through arduino. I have changed the port from ttyUSB0 to ttyACM0, but I don't know how change baudrate? When I run minimal.launch:

[ERROR] [WallTime: 1404556853.158925] Failed to contact device with error: [Error reading from SCI port. Wrong data length.]. Please check that the Create is powered on and that the connector is plugged into the Create.

And I change in minimal.launch Create to Roomba, but why in description of error written Create? I know that for Create default baudrate 57600, and what baudrate default for roomba? My roomba work at 115200 baudrate, and i don't know how change baudrate to 57600. Please, tell me how use turtlebot 2 with roomba 620. ROS Hydro Arduino code:

#include <SoftwareSerial.h>
SoftwareSerial myserial(9, 11);
void setup() {
        Serial.begin(57600);
        myserial.begin(19200);
        pinMode(2, OUTPUT);
        digitalWrite(2, LOW);
        delay(100);
        digitalWrite(2, HIGH);
        delay(2000);
}

void loop() {
    if(Serial.available() > 0) {
        byte b = Serial.read();
        myserial.write(b);
    }
if(myserial.available() > 0) {
        byte b = myserial.read();
        Serial.write(b);
    }
}

Thx, And sorry for my english.