Open-LISA-SDK 1.1.4

Creator: railscoder56

Last updated:

Add to Cart

Description:

OpenLISASDK 1.1.4

Open LISA SDK
This repository is part of Open LISA project:

Open LISA Server
Open LISA SDK
Open LISA UI

This SDK provides an interface to interact with the Open LISA Server. The server must be integrated with the instruments of interest and running in a known Serial port (RS233 connections) in order to be able to connect via this SDK from the client side. Alternatively, you can use TCP protocol for communication being aware that this system does not provide authentication or encryption under this protocol.
Installation
pip install open-lisa-sdk

Getting started
After installation and having configured the server with the instruments, you are ready create your experience scripts with Open LISA SDK in a few lines of code. For example:

Connect with the server

import Open_LISA_SDK

sdk = Open_LISA_SDK.SDK()
sdk.connect_through_RS232(port="COM3")


Get the instruments

instruments = sdk.get_instruments()
for instrument in instruments:
print("instrument {} {}".format(instrument["brand"], instrument["model"]))


Get instrument commands and send invocations to your instruments

instruments = sdk.get_instruments()
first_instrument = instruments[0]
command_execution_result = sdk.send_command(instrument_id=first_instrument["id"], command_invocation="set_channel_volts 1 5.0")
print(command_execution_result)


After finishing, remember to disconnect

sdk.disconnect()

Examples
You can check more online examples here. Go to examples folder and just run
python <example_script_name>.py

API Doc
You can check the full Open LISA SDK API Doc here, as well as the full source code in its repository

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.