Skip to content

ian-chuang/ati_axia80_ethernet_python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ati_axia80_ethernet_python

python driver for ati axia80 ethernet version

used this as reference for communicating with sensor: https://www.ati-ia.com/app_content/Documents/9610-05-Ethernet%20Axia80.pdf

Install:

pip install git+https://github.com/ian-chuang/ati_axia80_ethernet_python

Usage:

from ati_axia80_ethernet_python import ForceTorqueSensorDriver
import time

if __name__ == "__main__":
    sensor_ip = "172.22.22.3" # your ip address probably 192.168.1.1
    driver = ForceTorqueSensorDriver(sensor_ip)

    try:
        driver.start()

        print("Calibration data:")
        print(driver.get_calibration_data())
        print() 
        
        print("Sensor configuration:")
        print(driver.get_sensor_configuration())
        print()

        while True:
            reading = driver.get_latest_reading()
            if reading:
                print(reading)

            time.sleep(0.5)

    except KeyboardInterrupt:
        print("Stopping the driver...")
    finally:
        driver.stop()

About

python driver for ati axia80 ethernet version

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages