You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For instance, WaspFrameConstantsv15.h says that WTRX_PHEHT_PH_B (140) is an uint8_t (type 0, 1 byte), but both the documentation and WtrXtrFrameConstants.h say that it is a float (type 2, 4 bytes).
The problem this causes: when I create a binary frame and add the values of Smart Water Xtreme sensors (PHEHT and NTU, for instance) like this:
The only solution is using for all float values a field I know is properly defined, such as WTRX_PHEHT_TC2_B, but then the code is misleading.
Analysing WaspFrameConstantsv15.h I think this file is not updated with the Smart Water Xtreme values (they are used for the industrial protocol values, that have different fields).
The text was updated successfully, but these errors were encountered:
The data type definitions table (FRAME_SENSOR_TYPE_TABLE) for the Smart Water Xtreme sensors in WaspFrameConstantsv15.h are not the same as the definitions (WTR_XTR_TYPE_TABLE) in WtrXtrFrameConstants.h, nor the same shown in the documentation.
For instance, WaspFrameConstantsv15.h says that WTRX_PHEHT_PH_B (140) is an uint8_t (type 0, 1 byte), but both the documentation and WtrXtrFrameConstants.h say that it is a float (type 2, 4 bytes).
The problem this causes: when I create a binary frame and add the values of Smart Water Xtreme sensors (PHEHT and NTU, for instance) like this:
It gives the following error when creating the frame:
The only solution is using for all float values a field I know is properly defined, such as WTRX_PHEHT_TC2_B, but then the code is misleading.
Analysing WaspFrameConstantsv15.h I think this file is not updated with the Smart Water Xtreme values (they are used for the industrial protocol values, that have different fields).
The text was updated successfully, but these errors were encountered: