Тёмный
ROBOTIS OpenSourceTeam
ROBOTIS OpenSourceTeam
ROBOTIS OpenSourceTeam
Подписаться
We are an Open Source Team of ROBOTIS. With the open source hardware/software, our robot friends are hoping to enrich our lives. We mainly develop/support the Dynamixel SDK, OpenManipulator, OpenCM, OpenCR and OpenAutonomousCar. Our favorite platform is ROS! :) We are delighted to be in charge of developing TurtleBot3, the official reference platform for ROS, and in the future, we will be the team that can support you to create your robot dreams.

ru-vid.com
github.com/ROBOTIS-GIT
www.turtlebot.com/
turtlebot3.robotis.com
emanual.robotis.com
Welcome to ROS World 2021
2:02
2 года назад
DYNAMIXEL Quick Start Guide for ROS 2
2:54
3 года назад
DYNAMIXEL Quick Start Guide in Python
1:55
3 года назад
DYNAMIXEL Quick Start Guide in C++
2:24
3 года назад
Комментарии
@CherylBrunner-u8b
@CherylBrunner-u8b 16 дней назад
Jones Mary Young Helen Harris David
@달봉-t1l
@달봉-t1l 26 дней назад
1:33:27 부터 다시
@fox9starshow
@fox9starshow 2 месяца назад
좋은 강의 감사합니다.
@fox9starshow
@fox9starshow 2 месяца назад
좋은 영상 감사합니다.
@sheepnoobgaming8709
@sheepnoobgaming8709 2 месяца назад
I have a problem after i run matlab code i get error in line 48 that no library is found
@vongunter9947
@vongunter9947 2 месяца назад
how about for TurtleBot 4 using Jetson Orin Nano?
@ElijahPaiz-lh6kg
@ElijahPaiz-lh6kg 3 месяца назад
I'm getting an error trying to use colcon build command that says 'By not providing "Findcatkin.cmake" in CMAKE_MODULE_PATH this project has asked CMake to find a package config
@udaysankarmukherjee164
@udaysankarmukherjee164 3 месяца назад
thanks , because of u it works
@simonrism
@simonrism 4 месяца назад
Of course, this video is very nice and educational. On the other hand, You had a really really good sense of music. The background music of this video is really nice. Could you please tell me where can I find this music? Thanks, Simon
@ercost60
@ercost60 4 месяца назад
Amazing demo!
@franciscomiranda9295
@franciscomiranda9295 5 месяцев назад
Hello idk to much about this but my dynamixel XM430 W210 is not working, i dont know why but when i see in the port it only shows COM3
@trishakumari5769
@trishakumari5769 6 месяцев назад
Hello, i am trying to perform the same task but in rqt detected lanes marker for both yellow and white are not getting displayed, only gradient gray screen appears while camera image is displayed fine. can you please help with this?
@mr.9489
@mr.9489 6 месяцев назад
Hello? I am doing this in the university's lab, i am in electronic engnieering. My professor want to me to do that OpenManipulator-X, so i search openmanipulator e- manual, but that manual is related with ros1 and ubuntu 16,18.. But i want to do that machin in ubuntu22.04 and want to operate with Ros2 Humble. My Question is "Can i use ubuntu22.04 and ros2 humble to operate that manipulator-X?" i found some errors, but it's hard to find information about that,...can u help me?
@김승환-m4q
@김승환-m4q 6 месяцев назад
open_manipulator 폴더에 open_manipulator_moveit 패키지가 없는거 같습니다
@leemr783
@leemr783 7 месяцев назад
Hello! I'm a college student from Korea. Can I ask you a question? I'm currently using a Dynamixel RX-64 with an Arduino Uno and Dynamixel Shield. I downloaded the Arduino IDE and the necessary library. I opened the practice -> DynamixelShield -> basic -> position_mode example. I made some changes to the code: I replaced DXL_ID from 1 to 3, DXL_PROTOCOL_VERSION from 2.0 to 1.0, and kept dxl.begin(57600) the same. However, the Dynamixel doesn't seem to be working. Did I miss something? Could you please help me troubleshoot?" I sent you a code. /******************************************************************************* * Copyright 2016 ROBOTIS CO., LTD. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *******************************************************************************/ #include <DynamixelShield.h> #if defined(ARDUINO_AVR_UNO) || defined(ARDUINO_AVR_MEGA2560) #include <SoftwareSerial.h> SoftwareSerial soft_serial(7, 8); // DYNAMIXELShield UART RX/TX #define DEBUG_SERIAL soft_serial #elif defined(ARDUINO_SAM_DUE) || defined(ARDUINO_SAM_ZERO) #define DEBUG_SERIAL SerialUSB #else #define DEBUG_SERIAL Serial #endif const uint8_t DXL_ID = 3; const float DXL_PROTOCOL_VERSION = 1.0; DynamixelShield dxl; //This namespace is required to use Control table item names using namespace ControlTableItem; void setup() { // put your setup code here, to run once: // For Uno, Nano, Mini, and Mega, use UART port of DYNAMIXEL Shield to debug. DEBUG_SERIAL.begin(115200); // Set Port baudrate to 57600bps. This has to match with DYNAMIXEL baudrate. dxl.begin(57600); // Set Port Protocol Version. This has to match with DYNAMIXEL protocol version. dxl.setPortProtocolVersion(DXL_PROTOCOL_VERSION); // Get DYNAMIXEL information dxl.ping(DXL_ID); // Turn off torque when configuring items in EEPROM area dxl.torqueOff(DXL_ID); dxl.setOperatingMode(DXL_ID, OP_POSITION); dxl.torqueOn(DXL_ID); } void loop() { // put your main code here, to run repeatedly: // Please refer to e-Manual(emanual.robotis.com/docs/en/parts/interface/dynamixel_shield/) for available range of value. // Set Goal Position in RAW value dxl.setGoalPosition(DXL_ID, 512); delay(1000); // Print present position in raw value DEBUG_SERIAL.print("Present Position(raw) : "); DEBUG_SERIAL.println(dxl.getPresentPosition(DXL_ID)); delay(1000); // Set Goal Position in DEGREE value dxl.setGoalPosition(DXL_ID, 5.7, UNIT_DEGREE); delay(1000); // Print present position in degree value DEBUG_SERIAL.print("Present Position(degree) : "); DEBUG_SERIAL.println(dxl.getPresentPosition(DXL_ID, UNIT_DEGREE)); delay(1000); }
@2ndbrain108
@2ndbrain108 7 месяцев назад
does the sdk support dynamixel AX-12A series ? I have more of AX-12A series for robot servo and I want to use sbc for it not the micro.
@성재승-j9p
@성재승-j9p 8 месяцев назад
31:00
@성재승-j9p
@성재승-j9p 8 месяцев назад
25:36
@sharma1521
@sharma1521 8 месяцев назад
I cant open the map.yaml in noetic. [ERROR] [1705145209.537823090]: Map_server could not open /home/user_name/map.yaml.
@aaaaaaaaaa1skdkje
@aaaaaaaaaa1skdkje 9 месяцев назад
[gzserver-1] Warning [parser.cc:833] XML Attribute[version] in element[sdf] not defined in SDF, ignoring. how can i solve this? i just run this: "ros2 launch turtlebot3_gazebo turtlebot3_world.launch.py "
@Bryansim.
@Bryansim. 10 месяцев назад
Hi I have tried the example and the data rate is only 20Hz, how can I increase it? RETURN_DELAY_TIME is set to 0, and baud rate is 2000000
@김자용컴퓨터공학과
@김자용컴퓨터공학과 10 месяцев назад
안녕하세요! 선생님께 터틀봇3와 오픈매니퓰레이터를 활용해서 키보드로 원격 조작하는것에 대해 질문이 있어서 댓글 답니다. ros2 foxy에서 터틀봇과 동시에 매니퓰레이터 팔은 제어 할 수 있는데 그리퍼는 혹시 따로 gripper_controller로 구현해야 할까요??
@yeongha_shin
@yeongha_shin 11 месяцев назад
32:59
@yeongha_shin
@yeongha_shin 11 месяцев назад
29:24
@yeongha_shin
@yeongha_shin 11 месяцев назад
12:53
@Sub_9999
@Sub_9999 11 месяцев назад
share pls 😫
@yeongha_shin
@yeongha_shin 11 месяцев назад
3:05
@ukaszwaszczuk3505
@ukaszwaszczuk3505 11 месяцев назад
yes please give me more
@김준오-p9r
@김준오-p9r Год назад
very good tutorial. Saved my life!! Thank you! ㅠㅠ
@josuequiroz2398
@josuequiroz2398 Год назад
When execute ros2 topic pub -1 /set_positon dynamixel_sdk_custom_interfaces/msg/Set Position "{id:1, position: 4095}" The masage says: ros2: error: unrecognized arguments I'm using Dynamixel MX-64 I check the cpp and the parameters are ok
@lovesonvashikaran6505
@lovesonvashikaran6505 Год назад
hi i doing the same but imu and odometry doesn't work ,why?
@vaibhavbhasin3861
@vaibhavbhasin3861 Год назад
catkin_make install error , it says catkin : Depends: python3-catkin-pkg (>= 0.4.14-2) but it is not going to be installed unmet dependencies
@pnnydrt
@pnnydrt Год назад
Hi, I want to know. Are all Turtlebot3 Models able to run ROS2? or are there additional requirements for turtlebot3 to be able to use ROS2?
@rusticagenerica
@rusticagenerica Год назад
Why use these instead of normal Arduino?
@ibandr2749
@ibandr2749 Год назад
not all heroes wear capes
@prashanthkumar-je1km
@prashanthkumar-je1km Год назад
Iam working same project in noetic but not getting if anyone got it respond
@노지환-m1d
@노지환-m1d Год назад
박사님 12:19 에서 3d pose estimation 모델은 어떤것을 쓰셨는지 여쭤봐도 될까요?
@saddamgharb1381
@saddamgharb1381 Год назад
All was fine until I have run the read_write example where I have got the following error: [RxPacketError] The data is out of the range! Could you tell me please how I can correct this ? thank you
@흰수염고래-q3q
@흰수염고래-q3q Год назад
기초부터 공부하고 있는데 그저 감사합니다.
@rehauslu9603
@rehauslu9603 Год назад
do we need to connect the motor for graph simulation. I do not have motor now, however I need to tune it.
@ruyaulutas9990
@ruyaulutas9990 Год назад
idk
@petrasvestartas4359
@petrasvestartas4359 Год назад
Would this workflow work with 24 V motors of Dynamixel?
@ЕвгенийРябчунов-е9ъ
PLEASE HELP ME! With this command "ros 2 run dynamixel_sdk_examples read_write_node" gives the error "Package 'dynamixel_sdk_examples' not found ", but it is downloaded!!! WHAT TO DO, HELP!
@VijaySrikrishnan
@VijaySrikrishnan 21 день назад
It was literally written that its for ROS 1, some people really dont read
@ЕвгенийРябчунов-е9ъ
PLEASE HELP ME! With this command "ros 2 run dynamixel_sdk_examples read_write_node" gives the error "Package 'dynamixel_sdk_examples' not found ", but it is downloaded!!! WHAT TO DO, HELP!
@Xamuda
@Xamuda 7 месяцев назад
Have you found a solution? I have the same problem
@karl2223
@karl2223 7 месяцев назад
@@Xamuda don't forget to source the sdk installation. in your install folder type "source setup.bash"
@Xamuda
@Xamuda 7 месяцев назад
@@karl2223 Thank you, I have gottem it to work.
@SHEIKH_RIO
@SHEIKH_RIO Год назад
where in github is the code for the rviz detection and pick and place found
@pumoon4656
@pumoon4656 Год назад
이해가안돼는게 joint1의 origin 이 0 0 0.5 고 그 부모 link1의 origin 이 0 0 0.25 link1의 부모인 baseo origin이 0 0 0인데 그러면 joint 1은 0.75 만큼 base에서 떨어진거 아닌가요?? 왜 그림에서 0.25 0.25 해서 0.5 이런식으로 되어있죠
@권오성-m1i
@권오성-m1i Год назад
hi, nice guide for me. Is It okay different gcc version? , I couldn't install the gcc-5 . I think this version is over.
@SamarAshrafii
@SamarAshrafii Год назад
Does this work for ROS noetic as well?
@lazuardimufti
@lazuardimufti Год назад
omg its work...
@abhishekchaudhary7306
@abhishekchaudhary7306 Год назад
Can I run Dynamixel XM 430-W210-T motors as well using same libraries?
@buildingrobotswithactobotics
Do the SyncRead & SyncWrite instructions work with all dynamixels & all protocol versions ?