File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11name =Dynamixel2Arduino
2- version =0.6.2
2+ version =0.6.3
33author =ROBOTIS
44license =Apache-2.0
5- maintainer =Will Son(willson @robotis.com)
5+ maintainer =HongHyun Kim(khh @robotis.com)
66sentence =DYNAMIXEL protocol Library for Arduino
77paragraph =This library helps the Arduino boards to communicate with DYNAMIXEL protocol.
88category =Communication
Original file line number Diff line number Diff line change @@ -39,14 +39,14 @@ void SerialPortHandler::begin(unsigned long baud)
3939 if (port_ == Serial1 && getOpenState () == false ){
4040 pinMode (BDPIN_DXL_PWR_EN, OUTPUT);
4141 digitalWrite (BDPIN_DXL_PWR_EN, HIGH);
42- delay (300 ); // Wait for the FET to turn on.
42+ delay (500 ); // Wait for the FET to turn on.
4343 }
4444#elif defined(ARDUINO_OpenCR)
4545 if (port_ == Serial3 && getOpenState () == false ){
4646 pinMode (BDPIN_DXL_PWR_EN, OUTPUT);
4747 digitalWrite (BDPIN_DXL_PWR_EN, HIGH);
4848 }
49- delay (300 ); // Wait for the DYNAMIXEL to power up normally.
49+ delay (500 ); // Wait for the DYNAMIXEL to power up normally.
5050#endif
5151
5252 baud_ = baud;
You can’t perform that action at this time.
0 commit comments