Hi Xan to avoid starting a new thread, Had a question about your RC code you did…
My goal is to take your 1.3 ps2 code and adapt it for RC remote, and one feature I would like to attempt to eliminate would be the R2 button to double travel length, after looking at the code a while I broke this part of it
IF (DualShock(2).bit1 = 0) THEN ;R2 Button test
TravelLengthX = -(Dualshock(5) - 128)
TravelLengthZ = (Dualshock(6) - 128)
ELSE
TravelLengthX = -(Dualshock(5) - 128)
TravelLengthZ = (Dualshock(6) - 128)
ENDIF
As you can see I broke it so that when R2 is pressed or not pressed the outcome is the same… anyway semantics I’ll clean it up later… infact I could probably delete it all… anyway besides the point…
What other variables change when R2 is pressed ???
I would sort of like to modify it in this way “Ill try and explain this best I can”
the Pheonix goes from 0-100% speed with r2 not pressed
with R2 pressed it goes from 100% - 200% speed and some other variables change"
so I want to make it so that the stick moves to forward halfway position and the phoenix is walking forward 100% speed, when you move the stick forward the full position the phoenix is moving forward 200% so you eliminate the need for R2 as my futaba transmitter doesn’t have extra buttons to use.
as for gait type, have you made many additions to modifying your gaits? It seems like tripod 4 step gait is the fastest
One other question for you xan, Is it possible for the phoenix to go faster then the 4 step tripod gate at full forward while pressing R2? if so what variable would I modify to test faster gait speeds or step length…
Have you shared your code you put on your spider all said and done in that video you had created where you did individual leg control with the sticks of your remote?
–Aaron