Python utilities for redpitaya
Project description
Overview
This package provides a library to access the Red Pitaya registers. This library consist of a C library (libmonitor.c) and a ctypes interface on the Python side.
An object oriented interface to the different application (scope, generator, PID, AMS, …) is provided. This interface is implemented using Python properties (see usage below) and can quickly be extended to your own application.
An rpyc server is used in order to communicate with your computer. The interface is the same on the computer as the one on the board.
Installation
The process to install PyRedPitaya on the board requires the installation of Python first. See this link.
To install PyRedPitaya on the computer download the package and run the command:
python setup.py install
or use easy_install:
easy_install PyRedPitaya
Usage
You need to have Python installed on you Red Pitaya.
Interactive Python
Logging onto the redpitaya using ssh, one can start the ipython shell and run :
from PyRedPitaya.board import RedPitaya
redpitaya = RedPitaya()
print redpitaya.ams.temp # Read property
redpitaya.hk.led = 0b10101010 # Write property
Remote access
You need to install the PyRedPitaya package on your PC as well as Rpyc:
rpyc_server
On the computer (replace REDPITAYA_IP by the string containing the IP address) :
from rpyc import connect
from PyRedPitaya.pc import RedPitaya
conn = connect(REDPITAYA_IP, port=18861)
redpitaya = RedPitaya(conn)
print redpitaya.ams.temp # Read property
redpitaya.hk.led = 0b10101010 # Write property
from time import sleep
from pylab import *
redpitaya.scope.setup(frequency = 100, trigger_source=1)
sleep(100E-3)
plot(redpitaya.scope.times, redpitaya.scope.data_ch1)
show()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file PyRedPitaya-1.0.tar.gz
.
File metadata
- Download URL: PyRedPitaya-1.0.tar.gz
- Upload date:
- Size: 14.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 025f861e2afb6246dafe4dd9aa58489419163d1de5d4ac09326270fb30552386 |
|
MD5 | f2551c20ed69db5785eccff5d032fe36 |
|
BLAKE2b-256 | 9d056c661df990288634d81544fb46c6ba04a52700597f6246069145e1e98e43 |