I am trying to give your package a go to control a biologic sp300.
As a first attempt, I would like to run an OCV technique.
I can connect to the device at a specific IP address with this:
import easy_biologic as ebl
# create device and connect to it
bl = ebl.BiologicDevice('172.17.9.42')
bl.connect()
If then try and load a technique like this:
params = {
'time': 10,
'time_interval' : 1,
'voltage_interval' : 0.01
}
bl.load_technique(0,'ocv',params)
Then I get the following error:
easy_biologic.lib.ec_errors.EcError: ERR_TECH_INCOMPATIBLEECC (-401): Ecc file not compatible with the channel firmware.
But I don't know what to do about it. Can you make a suggestion? Is the firmware on the device a newer/different version to the ocv.ecc file used by the package? If so how can I use the latest version of ecc file?
Thanks!
I am trying to give your package a go to control a biologic sp300.
As a first attempt, I would like to run an OCV technique.
I can connect to the device at a specific IP address with this:
If then try and load a technique like this:
Then I get the following error:
But I don't know what to do about it. Can you make a suggestion? Is the firmware on the device a newer/different version to the ocv.ecc file used by the package? If so how can I use the latest version of
eccfile?Thanks!