I'm pretty new to EZ-Robot, so I apologize if this is a basic question... I've got a couple of Turnigy servos and a linear actuator working with EZ-B, but I'd like to add a continuous rotation servo with position feedback. I'm working on an R2-D2 project and this servo would be used to rotate the periscope that comes out of the droid's dome. As it's kind of pie shaped, ensuring it's back in the proper position prior to retraction is important.
I came across this Parallax Feedback 360 High-Speed Servo which seems to fit the bill. In addition to the normal three wires, there's a fourth with position information from the built-in Hall effect sensor. Where would I plug that fourth wire into and what bit of the EZ-B software will let me read it?
Thank you.
GetPWM is analogous to GetServo: does not compute the PWM instead returns the last/current PWM value.
To obtain Parallax servo 360's feedback you will need an extra controller:
measure the duty cycle and translate to servo position
track the servo's position in real time (not in ARC) and implement a closed loop code (PID) to control the current position and the desired position, basically is what a servo PCB does.
Last year i started to develop a plugin to use with ARC and to interface EZB with the external controller (Parallax Propeller).
The initial idea was to use with Cube Machine, allowing the Gripper to rotate 360 degrees and multiple times.
I detected some issues with the Parallax library code, so i started my firmware version in C and i found some other issues too. Propeller has 8 cores but no interrupts, timers etc, so everything needs to run with your code, so the next step was to use some spin/assembler code and redo the firmware.
I was running out of time (Cube plugin Project), busy at work too so Bob convinced me to use EZR HD servos (Strong/Silent).
I end up using the Parallax servos in another project (not an ARC) and the plugin is on hold waiting for better days
Plugin create date:

wow! almost a year agoI can't promise when, but, I'll come back to finish the plugin.
Thank you PTP for the update. I was sort of close with my assumption, as it does not read the port.
Thank you PTP for the detailed reply.
Thank you all for your feedback. Does anyone have experience with any other continuous rotation servos with position feedback?