Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion S2120/ChirpStack/SenseCAP_S2120_ChirpStackV3_Decoder.js
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ function dataIdAndDataValueJudge(dataId, dataValue) {
messages = [{
measurementValue: loraWANV2DataFormat(peakWind, 10),
measurementId: '4191',
type: ' Peak Wind Gust'
type: 'Peak Wind Gust'
}, {
measurementValue: loraWANV2DataFormat(rainAccumulation, 1000),
measurementId: '4213',
Expand Down
2 changes: 1 addition & 1 deletion S2120/Helium/SenseCAP_S2120_Helium_Decoder.js
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ function Decoder (bytes, port) {
peakWind = dataValue.substring(0, 4)
rainAccumulation = dataValue.substring(4, 12)
messages = [{
measurementValue: loraWANV2DataFormat(peakWind, 10), measurementId: '4191', type: ' Peak Wind Gust'
measurementValue: loraWANV2DataFormat(peakWind, 10), measurementId: '4191', type: 'Peak Wind Gust'
}, {
measurementValue: loraWANV2DataFormat(rainAccumulation, 1000), measurementId: '4213', type: 'Rain Accumulation'
}]
Expand Down
2 changes: 1 addition & 1 deletion S2120/TTN/SenseCAP_S2120_TTN_Decoder.js
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ function dataIdAndDataValueJudge (dataId, dataValue) {
peakWind = dataValue.substring(0, 4)
rainAccumulation = dataValue.substring(4, 12)
messages = [{
measurementValue: loraWANV2DataFormat(peakWind, 10), measurementId: '4191', type: ' Peak Wind Gust'
measurementValue: loraWANV2DataFormat(peakWind, 10), measurementId: '4191', type: 'Peak Wind Gust'
}, {
measurementValue: loraWANV2DataFormat(rainAccumulation, 1000), measurementId: '4213', type: 'Rain Accumulation'
}]
Expand Down