Connecting to Gemini GV6 by Parker in Python
Instrument Card
Incorporates all of the powerful features of the Gemini GV digital servo drive Provides six power ranges for up to 11.8 kW of continuous power Stand-alone servo controller and drive in one small package Full ASCII communications capability Control features such as registration, motion profiles, S-curve velocity profiling and conditional statements Program storage: Up to 32 programs or 190 lines of program code Daisy chain up to 99 units Simplified configuration and tuning 8 programmable inputs and 6 programmable outputs Wide range of PWM frequencies for linear motor support
Device Specification: here
Manufacturer card: PARKER
Parker Hannifin Corporation, originally Parker Appliance Company, usually referred to as just Parker, is an American corporation specializing in motion and control technologies.
- Headquarters: USA
- Yearly Revenue (millions, USD): 18000
- Vendor Website: here
Demo: Send commands to a Polulu stepper motor driver
Connect to the Gemini GV6 in Python
Read our guide for turning Python scripts into Flojoy nodes.
PROTOCOLS > SCPI
This script creates a class ParkerGV6
that inherits from SerialInstrument
and represents the Parker Gemini GV6 Servo Motor Controller. It provides methods and properties to interact with the instrument, such as enabling/disabling the motor, setting the angle, moving the motor, and reading the motor status.
In the example usage section, it creates an instance of ParkerGV6
with the serial port specified (replace “COM1” with the actual serial port). It enables the motor, sets the angle to 90 degrees, moves the motor, waits for 5 seconds, stops the motor, disables the motor, and closes the connection.
Note: This script assumes that you have already installed the pymeasure
package.