This is the description of the Modbus protocol for the PTC Bricklet. General information and technical specifications for the PTC Bricklet are summarized in its hardware description.
A general description of the Modbus protocol structure can be found here.
BrickletPTC.
get_temperature
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the temperature of connected sensor.
If you want to get the temperature periodically, it is recommended
to use the CALLBACK_TEMPERATURE
callback and set the period with
set_temperature_callback_period
.
BrickletPTC.
is_sensor_connected
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns true if the sensor is connected correctly.
If this function returns false, there is either no Pt100 or Pt1000 sensor connected, the sensor is connected incorrectly or the sensor itself is faulty.
BrickletPTC.
set_wire_mode
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Sets the wire mode of the sensor. Possible values are 2, 3 and 4 which correspond to 2-, 3- and 4-wire sensors. The value has to match the jumper configuration on the Bricklet.
The following meanings are defined for the elements of this function:
For mode:
BrickletPTC.
get_wire_mode
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the wire mode as set by set_wire_mode
The following meanings are defined for the elements of this function:
For mode:
BrickletPTC.
get_resistance
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the value as measured by the MAX31865 precision delta-sigma ADC.
The value can be converted with the following formulas:
If you want to get the resistance periodically, it is recommended
to use the CALLBACK_RESISTANCE
callback and set the period with
set_resistance_callback_period
.
BrickletPTC.
set_noise_rejection_filter
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Sets the noise rejection filter to either 50Hz (0) or 60Hz (1). Noise from 50Hz or 60Hz power sources (including harmonics of the AC power's fundamental frequency) is attenuated by 82dB.
The following meanings are defined for the elements of this function:
For filter:
BrickletPTC.
get_noise_rejection_filter
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the noise rejection filter option as set by
set_noise_rejection_filter
The following meanings are defined for the elements of this function:
For filter:
BrickletPTC.
get_identity
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the UID, the UID where the Bricklet is connected to, the position, the hardware and firmware version as well as the device identifier.
The position can be 'a', 'b', 'c', 'd', 'e', 'f', 'g' or 'h' (Bricklet Port). A Bricklet connected to an Isolator Bricklet is always at position 'z'.
The device identifier numbers can be found here.
BrickletPTC.
set_temperature_callback_period
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Sets the period with which the CALLBACK_TEMPERATURE
callback is triggered
periodically. A value of 0 turns the callback off.
The CALLBACK_TEMPERATURE
callback is only triggered if the temperature has
changed since the last triggering.
BrickletPTC.
get_temperature_callback_period
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the period as set by set_temperature_callback_period
.
BrickletPTC.
set_resistance_callback_period
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Sets the period with which the CALLBACK_RESISTANCE
callback is triggered
periodically. A value of 0 turns the callback off.
The CALLBACK_RESISTANCE
callback is only triggered if the resistance has changed
since the last triggering.
BrickletPTC.
get_resistance_callback_period
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the period as set by set_resistance_callback_period
.
BrickletPTC.
set_temperature_callback_threshold
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Sets the thresholds for the CALLBACK_TEMPERATURE_REACHED
callback.
The following options are possible:
Option | Description |
---|---|
'x' | Callback is turned off |
'o' | Callback is triggered when the temperature is outside the min and max values |
'i' | Callback is triggered when the temperature is inside the min and max values |
'<' | Callback is triggered when the temperature is smaller than the min value (max is ignored) |
'>' | Callback is triggered when the temperature is greater than the min value (max is ignored) |
The following meanings are defined for the elements of this function:
For option:
BrickletPTC.
get_temperature_callback_threshold
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the threshold as set by set_temperature_callback_threshold
.
The following meanings are defined for the elements of this function:
For option:
BrickletPTC.
set_resistance_callback_threshold
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Sets the thresholds for the CALLBACK_RESISTANCE_REACHED
callback.
The following options are possible:
Option | Description |
---|---|
'x' | Callback is turned off |
'o' | Callback is triggered when the temperature is outside the min and max values |
'i' | Callback is triggered when the temperature is inside the min and max values |
'<' | Callback is triggered when the temperature is smaller than the min value (max is ignored) |
'>' | Callback is triggered when the temperature is greater than the min value (max is ignored) |
The following meanings are defined for the elements of this function:
For option:
BrickletPTC.
get_resistance_callback_threshold
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the threshold as set by set_resistance_callback_threshold
.
The following meanings are defined for the elements of this function:
For option:
BrickletPTC.
set_debounce_period
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Sets the period with which the threshold callback
is triggered, if the threshold
keeps being reached.
BrickletPTC.
get_debounce_period
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the debounce period as set by set_debounce_period
.
BrickletPTC.
set_sensor_connected_callback_configuration
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
If you enable this callback, the CALLBACK_SENSOR_CONNECTED
callback is triggered
every time a Pt sensor is connected/disconnected.
New in version 2.0.2 (Plugin).
BrickletPTC.
get_sensor_connected_callback_configuration
¶Function ID: |
|
---|---|
Request: |
|
Response: |
|
Returns the configuration as set by set_sensor_connected_callback_configuration
.
New in version 2.0.2 (Plugin).
BrickletPTC.
CALLBACK_TEMPERATURE
¶Function ID: |
|
---|---|
Response: |
|
This callback is triggered periodically with the period that is set by
set_temperature_callback_period
. The response value is the
temperature of the connected sensor.
The CALLBACK_TEMPERATURE
callback is only triggered if the temperature has changed
since the last triggering.
BrickletPTC.
CALLBACK_TEMPERATURE_REACHED
¶Function ID: |
|
---|---|
Response: |
|
This callback is triggered when the threshold as set by
set_temperature_callback_threshold
is reached.
The response value is the temperature of the connected sensor.
If the threshold keeps being reached, the callback is triggered periodically
with the period as set by set_debounce_period
.
BrickletPTC.
CALLBACK_RESISTANCE
¶Function ID: |
|
---|---|
Response: |
|
This callback is triggered periodically with the period that is set by
set_resistance_callback_period
. The response value is the resistance
of the connected sensor.
The CALLBACK_RESISTANCE
callback is only triggered if the resistance has changed
since the last triggering.
BrickletPTC.
CALLBACK_RESISTANCE_REACHED
¶Function ID: |
|
---|---|
Response: |
|
This callback is triggered when the threshold as set by
set_resistance_callback_threshold
is reached.
The response value is the resistance of the connected sensor.
If the threshold keeps being reached, the callback is triggered periodically
with the period as set by set_debounce_period
.
BrickletPTC.
CALLBACK_SENSOR_CONNECTED
¶Function ID: |
|
---|---|
Response: |
|
This callback is triggered periodically according to the configuration set by
set_sensor_connected_callback_configuration
.
The response value is the same as is_sensor_connected
.
New in version 2.0.2 (Plugin).