Lynxmotion SES V2 Hexapod Robot

Really liking the progress Colin! Thank you for sharing here.

On another note, the body panels have arrived, but still waiting for a few additional products before we can create the kits to ship.

2 Likes

Good to hear about the hexapod. I am coding to support both biped and hex (or quad) and my latest refactor got rid of the last 2-leg specific code, so I look forward to testing on the hex too. :slight_smile:

1 Like

@kurte @xan @zenta Greatly apologize for the delay in sending the hardware, but you should have each received a confirmation for a RobotShop order for the parts. Keep us posted when you receive the packages! As discussed, it’s up to each of you to include whatever MCU or SBC you’re most comfortable starting with (and wiring it), as well as the battery (XT60 connector is best). Arduino and/or ROS (running on a Pi) are best.

2 Likes

Sounds great. Thanks!

Hope everyone is safe and doing well.

It will likely be a few days after I receive the package before I will feel safe to do much with it. Yes I know maybe a bit paranoid, but I prefer to be safe than sorry.

Side note: The new Teensy 4.1 is officially starting a quick beta… There is a thread over on PJRC forum talking about it.

Again hope everyone is well

1 Like

New video posted with new Trajectory Planning working! This worked out awesome! Also demoing calculation of convex hull and support polygons for limb/feet contacts. Next up…make those trajectories multi-point and add end-effector manipulators to RViz for creating the planning steps.

4 Likes

Since it is related to the topic, I would like to share with you my work on my robot dog: https://community.robotshop.com/forum/t/mechdog-robot-dog-based-on-arduino-and-lss/65705

4 Likes

Impressive! Very much appreciate that you’re making it more universal for other types of robots.

I got the package today!


:smiley::+1:

4 Likes

Excellent! Curious to know how long it takes you to assemble it (including basic wiring).

1 Like

Is there a reason for why the body panels are missing in the package?
I can make my own, but I thought it was meant we should all share the same hardware at first.

1 Like

That seems to be an oversight on our part. Creating the order now so it gets to you quickly. Apologies.

2 Likes

I was wondering as mine arrived in town yesterday, but picked up early from PMB (~6AM) and did the first pass at quarantining the parts… And wondered why yesterday there was another logical order…

Looks like time to assemble one of the Teensy boards.

1 Like

I’ve got my package yesterday! Love the premium boxes for the servos!

After receiving I started spreading out the components and wondered what happened with the body and controller board. Seems that I missed out on some messages here… :sweat_smile:

By what I could inspect now is that I like the improvements done on the servos and brackets. The ball bearing on the servo, a huge amount of mounting holes, bus communication: Love it! And the cable clips are a brilliant idea! Sorry for my excitement. I was not able to do anything robotic related so I’m pretty excited! Can’t wait to start :smiley:

Anyway, @zenta, @kurte, Did you decide on what board to use? I think it will be beneficial if we can share code so I will go with whatever you have.

5 Likes

Hi @xan and @zenta (and others) - I will hopefully have a chance to play some with the servos in the next day or two… Giving them some time to air out… Sorry I know I am being paranoid, but…

I am planning on over time hopefully work with the hexapod a couple of different ways electronically.

For the first round, I am probably going to use a Teensy. Probably first round I will do with a Teensy 4.1… Which is in beta now, but by the beta rules, I can not show any pictures… More details about it up on PJRC forum thread (https://forum.pjrc.com/threads/60532-Teensy-4-1-Beta-Test)

I have two boards sitting here that I did a quick and dirty design for, that I need to get going on soldering them up… Although at first I could simply use any T4.x and use the adapter board, to do the conversion to 5v for Serial ports.

The simpler version looks sort of like:


I believe almost all Teensy boards would work with this one, I would need to double check, but would probably use either T3.6 or T4.1 (or T4 with a castellated solder on board FRDM4236 which gives the T4 the same footprint as T3.6 or T4.1…
But with T4.1 or 3.6 the 5 pins can be hooked up for USB Host code… Where I probably will use a PS3 controller to start off with. I like PS4s better but mine appears to have a dead battery. Can use several different ones by plugging BT into USB…
Edit: If I remember correctly the yellow pins are setup with Arduino shield spacing so one could plug in something like an XBee shield.


Again is like the previous one mentioned, but was adapted from a board that supports Robotis Dynamixel Servos. A sort of nice feature of this one is that I have IO pins in place to allow me to plug in an Adafruit ST7735 or ST7789 display right below the speaker and would probably use the small ST7789 display (I have a couple of them)…

Longer term, will probably want to try moving to ROS (probably ROS2). Probably use RPI4. Maybe use UP board or Odroid ?
Or we could all have some fun and try one of the NVIDIA boards like:


Although I don’t know if they are supported by ROS, but might be great for any image processing one might want to do.

But first I should work on walking before trying to run!

1 Like

Can you detail a bit about using the PS3 or PS4 controller? Thanks.

1 Like

I’ll take a wild guess and say it has something to do with either:

  1. Using the PS3 controller as a wired USB device to the Teensy (acting as a USB host)
  2. Using the PS3/PS4 controller through Bluetooth by connecting a Bluetooth dongle by USB to the Teensy (again a USB host)

The Teensy 3.6 as well as the T4 and soon to be T4.1 processors have two USB controllers built into them. The first one does like the other T3x boards and communicates with the host. Note: The T4.x can communicate over USB at much higher USB 2 High speed than other Teensy boards up to 480Mbits instead of Full Speed (12Mbs).

Now the 2nd USB port
The T3.6 and T4.1 have a 5 pin connection setup, that can use a PC USB expansion connector to hook up a USB Host port. The T4 only has two bottom SMT pads where you can build your own. But it lacks a USB Current limiter chip that the others have, so if your wanting to support dynamic insertions of devices could be issues or your board should have one of these limiting chips (TPS055A)… Note: some of my boards I have experimented with are setup to be able to add in this chip and supporting stuff, or not…

Now assuming you have the hardware setup, like both of my boards above have USB Host connector. We have a library for the Teensy called USBHost_t36 which adds in USB Host support to your sketch. This library is installed with the Teensyduino install.

We don’t have support for every USB object, but we have support for a lot of HID based devices like (keyboards, Mice, Joy sticks. Likewise support of several of the USB to serial devices, Hubs, … One the later things we added was some support for Bluetooth. This included the support for a few BT keyboards, Mice and Joysticks including PS3 and PS4. So this is what I was going to maybe start from. There is an example sketch that is part of this library which you can find up at:

Note: I have a version of this library that when I was playing with it, I had the ability for more than one Bluetooth device. One of these days I will get back to it and get it integrated into the Paul’s master branch. One of the last things I was trying back then to get working was Two PS3 like controllers at same time. In particular a PS3 Move controller with a PS3 Motion controller. So you can have one in each hand. Don’t remember if I was able to get both to work or not.

1 Like

Forgot to mention a few links to the USB Host support on T3.6/T4.x
https://forum.pjrc.com/threads/49358-T3-6-USB-Host-Bluetooth

1 Like

Hi,

Is it recommended to update the firmware on all servos? I noticed they shipped with v367 and v368 are the recommended one. I assume it doesn’t matter much. But I thought it was ok to do when performing centering and id settings.

If I recall correct the pins are not compatible with the old beta servos. I have one of kurts old breakoutboards with Teensy 3.1 that worked with the beta. Now I might just connect the Teensy to the LSS adapter board. I’ve not had time to assemble the legs yet. I’m sure a bit rusty on everything here. I believe both Teensy 3.6 and 4.0 (the boards I have) are 3.3v only. And I assume D8 and D9 on the LSS adapter board is 5v only?

@kurte your Teensy board look nice, let us know how it goes after you’ve managed to solder one :slight_smile:

Good to hear from you @Xan , yeah, the hardware sure looks nice. I also love the built in nuts and also the possibility to add external gears directly on the servo. I’m also a bit curious about the tiny cable holders with magnets. I assume the magnets are for holding body covers/shields, or?

1 Like

Morning @zenta,

Some reason it did an OK while I was typing… Probably some glitch with my keyboard.

Until one has a T3.x or T4.x board to communicate with the LSS servos, you should be able to use one of the Sparkfun or Adafruit or similar TTL level converter boards. I started soldering one of my boards yesterday. May have a few missing pieces I need to order to do correctly but should be able to get enough of it in one piece to try to talk to the servos. The board simply has the same BSS… TTL level converter hook up like the Sparkfun board.

Still more soldering to go, and soon hopefully test some stuff out! :smiley:

1 Like