ST Spin Family Interface
A Python library for interfacing with ST Spin Family devices, specifically the ST Micro L6470, L6472, L6474, and L6480 ICs.
Currently this project has a single dependency: spidev.
Getting Started
Add stspin to your list of requirements and install.
Create a device chain
import time # Used in our example
from stspin import (
SpinChain,
StCommand,
StRegister,
StConstant,
)
device_chain = SpinChain(
total_devices=3,
spi_select=(0, 0)
)
This assumes the spi device is at 0, 0.
Create devices
motor_main = device_chain.create_device(0)
motor_secondary = device_chain.create_device(1)
In our example, there are three devices in the chain, and device 0 is furthest along the chain from the controlling IC's MOSI pin.
Run basic commands
motor_main.hiZHard() # It is good practice to set device into HiZ-State before setting parameters
motor_main.setRegister(StRegister.SpeedMax, 0x022)
motor_main.move(steps=2200)
while motor_main.isBusy():
pass
motor_main.setDirection(StConstant.DirReverse)
motor_main.run(220)
time.sleep(3)
motor_main.stopSoft()
Release files for st-spin 0.0.15
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| st_spin-0.0.15.tar.gz | 9.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| st_spin-0.0.15-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 21.3 kB
Release files / st_spin-0.0.15.tar.gz
| Download URL | st_spin-0.0.15.tar.gz |
|---|---|
| Size | 9.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
8c3b4b7b6c78b8e0d4a785946b470738d726fc5a9b42e293352faa50c67d3aad
|
|
BLAKE2b-256 checksum How to use checksums |
3d55070f822c6f01f6b5f767e6466dc41a1e1538f04a0e53a2ff153f57b0c515
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.8.2
|
Release files / st_spin-0.0.15-py3-none-any.whl
| Download URL | st_spin-0.0.15-py3-none-any.whl |
|---|---|
| Size | 12.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
724976144c27579a753b5f1b66703a5d152395a39d584e5f9cad1617167517fb
|
|
BLAKE2b-256 checksum How to use checksums |
95f4d614a46ea0cc23f742298de74572e217f164dca91d4a11af0b804fc475a7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.8.2
|