masnik1 / opcua-python-temperature-humidity

Proect that mocks a OPC_UA client and server for values of temperature and humidity.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

๐Ÿ“ About the project

The project consists in an opc_ua client and opc_ua server who will communicate with each other using an OPCUA communication, based of the Python library opcua. The server side will be sending random values of temperature and humidity to the client side, wich will adquire this values and then plot them in a line chart using the plotly library, the plotly lib is always described as the frontend for data science project, and it is really easy to use and plot clean graphs as html elements.

You can learn more of what the OPC UA communication protocol

๐Ÿ“‹ Run explanation

At first you need to set your IP address at the consts.py file to run it locally.

The you can run the server.py, who will set values for the temperature, humidity and time after each 2 second (defined time), parallel to that you can run the client.py, who will receive the first 15 values sent by the server and plot it in a plotly line graph. The opcua python lib is really simple to set the Client and Server connection.

๐Ÿ’ป Requirements

Clone this repository with:

git clone https://github.com/masnik1/opcua_python_temperature_and_humidity.git

To install the required python libs just go to your project folder via cmd and run:

pip install -r requirements.txt

Or you can install it manually via cmd and pip

pip install plotly
pip install opcua
pip install pandas
pip install datetime

๐Ÿ“ท Graph pictures

It is important to remember that this temperature and humidity values are simply mocked via the random lib, and do not represent any real situation, an update to the project would be to add an temperature/humidity sensor via and Arduino/ESP board and send the real values to the client. Graph

About

Proect that mocks a OPC_UA client and server for values of temperature and humidity.


Languages

Language:Python 100.0%