Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
8a85ed3
added 3 new phenomena for the rain sensor
Sep 6, 2023
9a140f6
linting and added icons to the sensor templates
Thiemann96 Sep 7, 2023
22c9117
Merge branch 'master' into add/rainsensor
Thiemann96 Sep 7, 2023
7eac9ad
changed the name to rg15
Thiemann96 Sep 7, 2023
c03a6af
Merge branch 'add/rainsensor' of https://github.com/sensebox/openSens…
Thiemann96 Sep 7, 2023
2ff8b0e
Merge branch 'master' into add/rainsensor
mpfeil Sep 7, 2023
22c84a0
Merge branch 'master' into add/rainsensor
mpfeil Sep 8, 2023
2c2990e
Merge branch 'master' into add/rainsensor
Thiemann96 Jan 19, 2024
39a1253
added comma in definitions
Thiemann96 Jan 19, 2024
7502516
fixed more typos
Thiemann96 Jan 19, 2024
7ebbc14
Strings must use singlequote
Thiemann96 Jan 19, 2024
6139add
fixed even more typos
Thiemann96 Jan 19, 2024
ec0638d
add rg15 to sensor templates
Feb 5, 2025
c1eab2d
fix lint
Feb 5, 2025
571b3ac
Merge branch 'master' into add/rainsensor
Thiemann96 Feb 5, 2025
38cde43
v3.2.1
Feb 5, 2025
2dd92b2
bump model and allow rg-15 template
Feb 5, 2025
c86f363
v3.3.1
Feb 5, 2025
54b36a1
model version
Feb 5, 2025
f570720
remove event intensity, some package.json stuff
Mar 17, 2025
356a635
remove mentions of event acc
Mar 17, 2025
1b648f3
v3.3.2
Mar 18, 2025
2b0c300
allow serial port specification
Mar 18, 2025
163b8a2
bump api-models
Mar 18, 2025
bdb9a50
bump templater version
Mar 18, 2025
1a7e008
bump templater version
Mar 18, 2025
3ed20d5
fix lint error
Mar 18, 2025
544abc8
remove always failing test
Mar 18, 2025
c2bf958
lint stuff
Mar 18, 2025
dcb3b86
remove - from sensor type
Mar 19, 2025
a2c6dd2
change sensor title
Mar 19, 2025
ce724d5
added sb041 charger
May 20, 2025
cddbd48
update deprecated ubuntu version
May 20, 2025
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
10 changes: 8 additions & 2 deletions packages/models/src/box/sensorLayouts/sensebox.home.mcu.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ const {
sps30_pm1,
sps30_pm25,
sps30_pm4,
sps30_pm10
sps30_pm10,
rain_intensity,
rain_eventAcc,
rain_totalAcc
} = sensorDefinitions;

module.exports = [
Expand All @@ -47,5 +50,8 @@ module.exports = [
sps30_pm1,
sps30_pm25,
sps30_pm4,
sps30_pm10
sps30_pm10,
rain_intensity,
rain_eventAcc,
rain_totalAcc,
];
10 changes: 8 additions & 2 deletions packages/models/src/box/sensorLayouts/sensorDefinitions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ const veml6070_uvintensity = require('./veml6070_uvintensity'),
sps30_pm1 = require('./sps30_pm1'),
sps30_pm25 = require('./sps30_pm25'),
sps30_pm4 = require('./sps30_pm4'),
sps30_pm10 = require('./sps30_pm10');
sps30_pm10 = require('./sps30_pm10'),
rain_intensity = require('./rain_intensity'),
rain_eventAcc = require('./rain_eventacc'),
rain_totalAcc = require('./rain_totalacc');
module.exports = {
hdc1008_temperature,
hdc1080_temperature,
Expand Down Expand Up @@ -95,5 +98,8 @@ module.exports = {
sps30_pm1,
sps30_pm25,
sps30_pm4,
sps30_pm10
sps30_pm10,
rain_intensity,
rain_eventAcc,
rain_totalAcc
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
'use strict';

module.exports = {
title: 'Niederschlag (letztes Ereignis)',
unit: 'mm/m²',
sensorType: 'RG-15',
icon: 'osem-umbrella',
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
'use strict';

module.exports = {
title: 'Regenintensität',
unit: 'mm/h',
sensorType: 'RG-15',
icon: 'osem-umbrella'
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
'use strict';

module.exports = {
title: 'Niederschlag (Insgesamt)',
unit: 'mm/m²',
sensorType: 'RG-15',
icon: 'osem-umbrella',
};