Expressions Parameters enable users to perform arithmetic operations on sensor values and configure complex expressions involving multiple sensors. This feature allows for advanced data manipulation and integration, enhancing the capabilities of sensor-based devices.




Users can perform various arithmetic operations on sensor parameters. Below are some examples of arithmetic expressions:
Addition: {ioElements.240.value} + 1
Subtraction: {ioElements.240.value} - 1
Multiplication: {ioElements.240.value} * 2
Division: {ioElements.240.value} / 2
Exponentiation: {ioElements.240.value} ^ 2
Modulus: {ioElements.240.value} % 2

Expressions can also combine data from multiple sensors. For example:
Add Sensor Value to Another Sensor's Value: {ioElements.240.value} + [GPS#altitude]
Subtract Sensor Value from Another Sensor's Value: {ioElements.240.value} - [Engine#RPM]
Multiply Sensor Value by Another Sensor's Value: {ioElements.240.value} * [Temperature#current]
Divide Sensor Value by Another Sensor's Value: {ioElements.240.value} / [Battery#voltage]

To configure expressions, specify the desired operation and input values as shown in the examples. This flexibility allows for customized calculations and data integration tailored to specific needs.