Both communication via USB and Lantronix XPort are supported.
Note that not all commands of MeCom are implemented at this time. Feel free to submit more commands via a Pull Request.
from meer_tec.interfaces import USB
from meer_tec.tec import TEC
usb = USB("COM3")
tec = TEC(usb, 0)
Create a connection to the XPort and pass it as an argument to one of the TECs
from meer_tec.interfaces import USB
from meer_tec.tec import TEC
xp = XPort('192.168.1.123')
tec3 = TEC(xp, 3)
The commands are implemented as properties. For example the target temperature can be read by simply using
tec3.target_temperature
23.0
tec3.target_temperature = 23.1
- Bastian Leykauf (https://github.com/bleykauf)
MeerTEC -- Python implemenation of the MeCom interface for Meerstetter TECs.
Copyright © 2020-2023 B. Leykauf
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.