-
Notifications
You must be signed in to change notification settings - Fork 389
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Jaime Trinidad <[email protected]>
- Loading branch information
1 parent
f6b5404
commit 07100ea
Showing
4 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
macVersion: '1.0.4' | ||
regionalParametersVersion: 'RP002-1.0.4' | ||
# Whether the end device supports join (OTAA) or not (ABP) | ||
supportsJoin: true | ||
|
||
# Maximum EIRP | ||
maxEIRP: 14 | ||
# Whether the end device supports 32-bit frame counters | ||
supports32bitFCnt: true | ||
|
||
# Whether the end device supports class B | ||
supportsClassB: false | ||
|
||
# Whether the end device supports class C | ||
supportsClassC: false |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: flowIQ®2200 OMS over LoRaWAN # Device name can not contain the vendor name | ||
description: Kamstrup flowIQ®2200 OMS over LoRaWAN water meter. Configuration no 02K73A****** | ||
|
||
# Firmware versions (at least one is mandatory) | ||
firmwareVersions: | ||
- # Firmware version | ||
version: '1.0' | ||
numeric: 1 | ||
|
||
# LoRaWAN Device Profiles per region | ||
# Supported regions are EU863-870, US902-928, AU915-928, AS923, CN779-787, EU433, CN470-510, KR920-923, IN865-867, | ||
# RU864-870 | ||
profiles: | ||
EU863-870: | ||
# Optional identifier of the vendor of the profile. When you specify the vendorID, the profile is loaded from | ||
# the vendorID's folder. This allows you to reuse profiles from module or LoRaWAN end device stack vendors. | ||
# If vendorID is empty, the current vendor ID is used. In this example, the vendorID is the current vendor ID, | ||
# which is verbose. | ||
vendorID: kamstrup | ||
# Identifier of the profile (lowercase, alphanumeric with dashes, max 36 characters) | ||
id: flowiq2200-02k73a-profile | ||
lorawanCertified: true | ||
|
||
# Type of device (optional) | ||
# Valid values are: devkit, module, cots | ||
deviceType: cots | ||
|
||
# Sensors that this device features (optional) | ||
# Valid values are: | ||
# 4-20 ma, accelerometer, altitude, analog input, auxiliary, barometer, battery, button, bvoc, co, co2, conductivity, current, digital input, | ||
# digital output, dissolved oxygen, distance, dust, energy, gps, gyroscope, h2s, hall effect, humidity, iaq, infrared, leaf wetness, level, | ||
# light, lightning, link, magnetometer, moisture, motion, nfc, no, no2, o3, occupancy, optical meter, particulate matter, ph, pir, | ||
# pm2.5, pm10, potentiometer, power, precipitation, pressure, proximity, pulse count, pulse frequency, radar, rainfall, reed switch, rssi, | ||
# sap flow, smart valve, smoke, snr, so2, solar radiation, sound, strain, surface temperature, switch, temperature, tilt, time, turbidity, | ||
# tvoc, uv, vapor pressure, velocity, vibration, voltage, water potential, water, weight, wifi ssid, wind direction, wind speed. | ||
sensors: | ||
- water | ||
- temperature | ||
|
||
# Battery information (optional) | ||
battery: | ||
replaceable: false | ||
type: 2xA | ||
|
||
# IP rating (optional) | ||
ipCode: IP68 | ||
|
||
# Product and data sheet URLs (optional) | ||
productURL: https://www.kamstrup.com/en-en/water-solutions/meters-devices/meters/flowiq-2200 | ||
dataSheetURL: https://documentation.kamstrup.com/docs/flowIQ_2200_EU/en-GB/Data_sheet/CONT86024E18ECB94BD6B9510C582087F03F/ | ||
# Link to simple, easy onboarding instructions for the device (optional). | ||
# Please do not use this for marketing or overly technical documents like a data sheet. | ||
onboardingGuideURL: https://documentation.kamstrup.com/docs/flowIQ_2200_EU/en-GB/Quick_guide/CONTB4BEEF010B1F4300BDC3C56825CF6D9D/ | ||
|
||
# Photos | ||
photos: | ||
main: flowiq2200-02k73a.png # Image needs to have a transparent background |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
endDevices: | ||
# Unique identifier of the end device (lowercase, alphanumeric with dashes, max 36 characters) | ||
- flowiq2200-02k73a | ||
|
||
# The profileIDs is a distinct value for every unique profile listed in the vendor's folder. | ||
# This value can be freely issued by the vendor and is also used on the QR code for LoRaWAN devices, see | ||
# https://lora-alliance.org/wp-content/uploads/2020/11/TR005_LoRaWAN_Device_Identification_QR_Codes.pdf#page=8 | ||
# It can either be a combo of device ID + hardware version + firmware version + region, or profile ID + codec ID | ||
# NOTE: The profileIDs is different from the vendorID. | ||
profileIDs: | ||
'73': | ||
endDeviceID: 'flowiq2200-02k73a' | ||
firmwareVersion: '1.0' | ||
hardwareVersion: '1.0' | ||
region: 'EU863-870' |