The post Industrial High-Precision Temperature Monitoring on Production Lines in 10 minutes with MSX-E3211 and Python appeared first on ADDI-DATA.
]]>
Industrial production lines like food processing, chemical plants, plastics extrusion, and metal treatment require continuous, high-precision temperature monitoring across multiple zones. Curing ovens, cooling tunnels, extrusion dies, and chemical reactors all demand accurate, real-time temperature data to ensure product quality and process safety.
Integrators and Machine Builders need a fast, open, and cost-effective approach that integrates seamlessly with modern data analysis tools.
The ADDI-DATA MSX-E3211 module provides 16 channels of industrial-grade temperature measurement over Ethernet. Available in two versions, the module covers virtually any industrial temperature monitoring scenario:
Combined with our open-source Python SOAP API, users go from unboxing to live data acquisition in under 5 minutes without proprietary software required.
Key features:
Connect the MSX-E3211 to your Ethernet network. The module ships with a default IP address. Configure it to match your network using the ADDI-DATA Config Tools.
1. Automatic search for the MSX-E systems
4. Firmware update

5. System configuration through web interface

6. ConfigTools for acquisition systems with inductive transducers

Install the Python SOAP client library:
pip install zeep
Run the following Python code to read temperatures from all 16 channels:
"""Sample: Temperature polling on the MSX-E 3211.
Demonstrates:
- Querying the number of temperature channels
- Auto-detecting sensor class (RTD, TC, or NTC) per channel
- Configuring channels with appropriate types
- Starting auto-refresh acquisition
- Polling temperature values at regular intervals
- Stopping acquisition
Works with both thermocouple (TC) and RTD versions of the MSX-E 3211.
"""
import sys
import time
sys.path.insert(0, "../..")
from msxe_api import MSXE3211API
from msxe_api.msxe import MSXEError
from msxe_api.msxe3211 import TC_TYPE_K, RTD_PT100, REFRESH_UNIT_MS
MSXE_ADDRESS = "192.168.99.99"
MSXE_PORT = 5555
POLL_INTERVAL_S = 1.0 # seconds between each poll
POLL_COUNT = 10 # number of readings
def main():
msxe = MSXE3211API(MSXE_ADDRESS, MSXE_PORT)
# ── Auto-detect sensor class and configure all channels ──────
counts = msxe.configure_all_channels(tc_type=TC_TYPE_K, rtd_type=RTD_PT100)
print(f"Configured: {counts}")
# ── Show current configuration ───────────────────────────────
num_channels = msxe.temperature_get_number_of_channels()
msxe.print_channel_configuration()
# ── Start auto-refresh (all channels, 500 ms refresh) ───────
channel_mask = (1 << num_channels) - 1
msxe.auto_refresh_start(
channel_mask=channel_mask,
refresh_time=500,
refresh_time_unit=REFRESH_UNIT_MS,
force_start=1,
)
print(f"\nAuto-refresh started (mask=0x{channel_mask:04X}, 500 ms)")
# ── Poll temperature values ──────────────────────────────────
print(f"\nPolling {POLL_COUNT} readings, {POLL_INTERVAL_S}s apart:")
print("-" * 60)
header = " Time |" + "".join(f" Ch{ch:2d} " for ch in range(num_channels))
print(header)
print("-" * 60)
for i in range(POLL_COUNT):
ts_low, ts_high, counter, values = msxe.auto_refresh_get_values(blocking=1)
row = f" {i * POLL_INTERVAL_S:5.1f}s |"
for ch in range(min(num_channels, len(values))):
row += f" {values[ch]:6.1f}°"
print(row)
time.sleep(POLL_INTERVAL_S)
# ── Stop auto-refresh ────────────────────────────────────────
msxe.auto_refresh_stop()
print("\nAuto-refresh stopped")
if __name__ == "__main__":
try:
main()
except KeyboardInterrupt:
print("\nInterrupted — stopping acquisition")
msxe = MSXE3211API(MSXE_ADDRESS, MSXE_PORT)
msxe.auto_refresh_stop()
except MSXEError as e:
print(f"MSXE error: {e}")
except Exception as e:
print(f"Connection error: {e}")
Get below our Live Dashboard sample on Github:
Install matplotlib and run the dashboard sample for real-time visualization:
pip install matplotlib
python sample_temperature_dashboard.py
A live chart window opens showing all 16 temperature channels updating in real time. Close the window to stop acquisition.
Get below our Live Dashboard sample on Github:
Log all channels to CSV for analysis in Excel, pandas, or any BI tool:
python sample_temperature_csv_logger.py
Outputs a timestamped CSV file with one row per reading and one column per channel, ready for import into any analysis tool.
The system architecture is simple and modular:

Multiple MSX-E 3211 modules can be connected to the same network. Each module is addressed by its IP address. The Python API handles SOAP communication transparently.
The Python API is designed for simplicity. Here are the key operations:
All operations raise MSXEError with clear error codes on failure. The API supports both RTD and Thermocouple versions with the same code.

Download the Python API and samples from our GitHub repository:
For technical support, please contact: info@addi-data.com
If you want to learn more about the MSX-E3211, you can find additional information directly on the product page.
DAQ cards
• For various signal types
• High precision
• Robust and interference-resistant

Real-time systems
• EtherCAT and Profinet
• Linux systems including real-time extension
• PC boards with RTX real-time drivers

Ethernet systems
• Direct sensor connection
• Onboard calculation of the acquired data
• For use in the field, up to IP 67

Data loggers
• Long-term data acquisition of numerous signal types
• Setup of the measurement device without programming knowledge
• Visualisation of the live data

The best solution often is customized. As a manufacturer, we are able to adapt our solutions as closely as possible to your requirements. We are pleased to advise you on finding the best solution for your applications and to perform the necessary adaptations for you.
Just ask us!
The post Industrial High-Precision Temperature Monitoring on Production Lines in 10 minutes with MSX-E3211 and Python appeared first on ADDI-DATA.
]]>The post MSX-BOX-IPC-2 – Machine and Test Bench Migration to PCIe and Modern Operating Systems for High-Performance DAQ appeared first on ADDI-DATA.
]]>
Over past years, data acquisition systems themselves have evolved, but many existing machines and factory setups still rely on outdated components, making maintenance, scalability, and compatibility increasingly difficult. Without modernization effort, the customer could faced longer downtimes, rising maintenance costs, and a real risk for the future projects.
Our customers approach us with a range of technical and operational situations when expressing their needs.
The customer is still operating systems based on aging hardware architectures, originally built around the ISA bus and later largely migrated to the PCI bus. While ISA has long been obsolete and spare parts are now virtually unavailable, PCI is following the same path. It is increasingly being phased out of modern mainboards, and the availability of compatible components continues to decline steadily. This dual constraint makes hardware modernization essential to ensure long-term system reliability, operational continuity, and sustainable infrastructure support.
The customer still uses a mix of PCI and PCIe-based hardware combined with a 32-bit system. With support for Windows 10 and older operating systems discontinued, there is a strong desire to upgrade to 64-bit Windows 11. Since this transition is virtually impossible without new hardware, a full system upgrade becomes necessary.
In many industrial projects, multiple critical components are often sourced from different suppliers, creating procurement complexity and increasing operational costs due to multiple points of contact. By integrating high-performance IPCs into our DAQ portfolio, we provide a unified solution that centralizes responsibility, simplifies sourcing, and reduces coordination overhead through a single, coherent system approach.
Across industries, aligning with stakeholder needs and expectations, structured around three key considerations:
A major challenge arises when customers need access to the source code of their application or at least the ability to involve the original software provider. If access is no longer available or the vendor refuses to provide support, adapting the hardware becomes nearly impossible.
As a solution, ADDI-DATA offers to develop a functionally equivalent application, ensuring continued system usability.
Replacing outdated hardware can lead to unexpected behavior in connected systems. This is often due to newer hardware operating with higher speed or efficiency, which can cause timing or signal mismatches.
In such cases, signal types or communication patterns may need adjustment either through hardware modifications or via software/firmware tuning.
In some situations, new hardware must be integrated with older, existing software.
This is possible in principle, but only if the required functions and driver calls used by the legacy system are still supported by the new hardware platform. A careful technical review is essential to ensure compatibility and avoid unexpected issues.
The MSX-BOX-IPC-2 directly addresses the operational challenges and evolving needs faced by organizations today:
If you want to learn more about the MSX-BOX-IPC-2, you can find additional information directly on the product page.
DAQ cards
• For various signal types
• High precision
• Robust and interference-resistant

Real-time systems
• EtherCAT and Profinet
• Linux systems including real-time extension
• PC boards with RTX real-time drivers

Ethernet systems
• Direct sensor connection
• Onboard calculation of the acquired data
• For use in the field, up to IP 67

Data loggers
• Long-term data acquisition of numerous signal types
• Setup of the measurement device without programming knowledge
• Visualisation of the live data

The best solution often is customized. As a manufacturer, we are able to adapt our solutions as closely as possible to your requirements. We are pleased to advise you on finding the best solution for your applications and to perform the necessary adaptations for you.
Just ask us!
The post MSX-BOX-IPC-2 – Machine and Test Bench Migration to PCIe and Modern Operating Systems for High-Performance DAQ appeared first on ADDI-DATA.
]]>The post Industrial measurement : technology for automation appeared first on ADDI-DATA.
]]>
To optimise automation processes in a sustainable way, at first their weak points must be detected: A challenge for modern measurement technology :
These are just some of the optimizations that can be achieved with ADDI-DATA’s high-precision intelligent measurement systems!
Modern measurement technology can be used for various tasks, as many signal types can be acquired. Thus it is possible to identify the different weakness in the automation chain. Here are some examples:
Temperature measurement
Pressure measurement
Analog signal acquisition
Position acquisition
Lenght measurement
Vibration measurement
With high-precision DAQ cards and distributed systems by ADDI-DATA you can acquire and process numerous signal types, control and readjust processes directly and loop signals for readjustments and regulation to control units via standard interfaces. The acquired data can also be transferred to super-ordinate databases and software for evaluation and visualisation.
Position acquisition of glass components at a welding process
Challenge:
At the construction of glass components two parts are welded with hot air. As the material is very fragile the welding process must be carried out very carefully and precisely (1 µm) despite of the speed in order to avoid the breaking of the parts.
Furthermore it must be made sure that the glass components are close enough to guarantee a good quality of the weld seam. Thus the components’ position shall be acquired in intervals of 200 ms.
Solution:
For the position detection of the glass components the Ethernet counter system MSX-E1731 via EnDat 2.2 sensors has been chosen due to its speed and precision.
At the beginning of the welding process the SPS triggers the MSXE1731 system to start the measurement process. As soon as the glass components are in the correct position the system sends two signals: One for the digital output to stop the axes and via Ethernet the start signal for the welding process. When the welding phase is over all acquired data is transferred to a Linux server for archival storage.
DAQ cards
• For various signal types
• High precision
• Robust and interference-resistant

Real-time systems
• EtherCAT and Profinet
• Linux systems including real-time extension
• PC boards with RTX real-time drivers

Ethernet systems
• Direct sensor connection
• Onboard calculation of the acquired data
• For use in the field, up to IP 67

Data loggers
• Long-term data acquisition of numerous signal types
• Setup of the measurement device without programming knowledge
• Visualisation of the live data

Customized solutions
The best solution often is customized. As a manufacturer, we are able to adapt our solutions as closely as possible to your requirements. We are pleased to advise you on finding the best solution for your applications and to perform the necessary adaptations for you.
Just ask us!
The post Industrial measurement : technology for automation appeared first on ADDI-DATA.
]]>The post Position acquisition with EnDat 2.2 appeared first on ADDI-DATA.
]]>
With ADDI-DATA measurement solutions you can connect up to 8 EnDat 2.2 encoders and acquire the position values of absolute encoders. In combination with the digital bidirectional interface EnDat 2.2 absolute encoders provide the position value directly, without reference run. EnDat 2.2 is preferentially used for applications with highly precise positioning and high repeat accuracy. Diagnostic data like temperature, line break, etc. can also be transferred.
More and more, measurement devices and machine tools transfer position data through EnDat 2.2 interfaces to the subsequent electronics. This helps the engine builders to increase the machines’ productivity and to improve the competitive ability of the devices in which the machines are integrated.
To guarantee a reliable classification of the position value even in case of long lines, EnDat 2.2 features signal delay-time compensation. At the start of the positioning process, the time for each cycle until the response of the EnDat 2.2 data package is acquired.
As additional data like for example temperature values can be sent, it is possible to effect corrections in the process quickly in order to guarantee a constant accuracy during the positioning process. This is important for small production lots or in case of different use of tools.
EnDat 2.2 is a bidirectional synchronous-serial interface for position measurement devices. This interface allows to read out absolute position values and parameters, to write status and initialisation registers and to transfer additional information about the position value. In addition, ADDI-DATA EnDat 2.2 solutions support the evaluation of diagnostic values and access to the OEM memory. Data is transferred serially.
• Fast data transfer, frequency depends on the subsequent electronics
• Signal delay time compensation
• High contour accuracy
• High transmission safety
• No need for additional sensors: Evaluation (temperature, limit switch, etc.)
• Serial transmission: only 4 lines necessary
• Single-line wiring (M12, 8-pin)
• Automatic parameterisation through electronic type plate
High requirements for the subsequent electronics
Whether PC-based or distributed – the EnDat 2.2 interface has high requirements to the subsequent electronics: Precise position detection at high frequency, velocity, robustness and interference-resistance are significant for the subsequent electronics.
ADDI-DATA offers four different solutions for the position acquisition:
• PCI-Express counter board with a high input frequency up to 10 MHz (optional)
• Intelligent motion control board for complex positioning tasks
• Intelligent Ethernet counter system for direct use inside machines
• Motion Box for real-time positioning tasks
Functional principle

Exact positioning of axes for the regulation of surface measurement devices for
rotationally symmetric parts (e.g. gear wheels)
Challenge:
For the measurement of the surfaces of rotationally symmetric parts numerous axes must be positioned. Furthermore the signals must be fastly transferred in order to detect the position as exactly as possible. To safe time, absolute encoders are used because they do not need any reference runs when started.
Solution:
The measurement device consists of a measurement table with a gate. The rotationally symmetric parts are fixed on the measurement table and their surface is tested with a sensor connected to the gate. To move the sensor around the parts the gate has several axes equipped with EnDat 2.2 absolute encoders. The precision of the axis position is assured by the PCI Express counter board APCIe-1711: Thanks to its high input speed of 10 MHz (optional APCIe-1711-10MHZ version) and its resistance to interferences, the board is able to move the axes precisely even at high speed.

Position acquisition of glass components at a welding process
Challenge:
For the construction of glass components two parts are welded with hot air. As the material is very fragile the welding process must be carried out very carefully and precisely (1 µm) despite of the speed in order to avoid the breaking of the parts. Furthermore it must be made sure that the glass components are close enough to guarantee a good quality of the weld seam. Thus the position of the component shall be acquired in intervals of 200 ms.
Solution:
For the position detection of the glass components the Ethernet counter system MSX-E1731 with EnDat 2.2 sensors has been chosen due to its speed and precision. At the beginning of the welding process the SPS triggers the MSX-E1731 system to start the measurement process. As soon as the glass components are in the correct position the system sends two signals: One for the digital output to stop the axes and via Ethernet the start signal for the welding process. When the welding phase is over all acquired data is transferred to a Linux server for archival storage.

Automatic measurement device for clutch disks
Challenge:
The functional reliability of the pull-back springs on clutch disks shall be tested. Thereby the force in relation to the distance shall be measured. How can the relation force / distance be exactly established?
Solution:
For establishing correctly the relation force / distance, position acquisition plays an important role. A clutch disc is positioned and locked in place on a conveyor belt. A plunger gets down until it reaches the clutch disc. The plunger turns and thereby force and distance are measured. In order to find the absolute positions as fast and as accurately as possible, EnDat 2.2 encoders are used for the positioning of the axes. An APCI-8008 board acquires data from the EnDat 2.2 encoders and the position values are included in the regulating process. To get the force values, the APCI-8008 reads the measured values of the PCI pressure measurement board APCI-3300 directly via bus master access.

Counter board PCI-Express
• Fast counter inputs (up to 10 MHz)
• Can be combined with functions like PWM, incremental
• 64-bit drivers for Windows 7/Vista/XP

Intelligent motion control board
• Controling up to 8 axes
• Mixed mode servo / stepper motors
• Ethernet/EtherCAT interfaces

Intelligent Ethernet counter system
• 4 counter inputs
• Direct sensor connection
• For use in the field, IP 65

Customized solutions
The best solution often is customized. As a manufacturer, we are able to adapt our solutions as closely as possible to your requirements.
We are pleased to advise you on finding the best solution for your applications and to perform the necessary adaptations for you.
Just ask us!
The post Position acquisition with EnDat 2.2 appeared first on ADDI-DATA.
]]>