@hello.nrfcloud.com/proto-map
Version:
Documents the communication protocol between devices, the hello.nrfcloud.com/map backend and web application
37 lines (36 loc) • 2.04 kB
JavaScript
/**
* The Model IDs defined in this repo.
*/ function _define_property(obj, key, value) {
if (key in obj) {
Object.defineProperty(obj, key, {
value: value,
enumerable: true,
configurable: true,
writable: true
});
} else {
obj[key] = value;
}
return obj;
}
export var ModelID = /*#__PURE__*/ function(ModelID) {
ModelID["Kartverket_vasstandsdata"] = "kartverket-vasstandsdata";
ModelID["Thingy91x"] = "thingy91x";
return ModelID;
}({});
var _obj;
/**
* The models defined for hello.nrfcloud.com
*/ export var models = (_obj = {}, _define_property(_obj, "kartverket-vasstandsdata", {
"id": "kartverket-vasstandsdata",
"about": {
"title": "Kartverket Vasstandsdata",
"description": "A simulated device reporting the current sea level as provided by the Kartverket's (Norwegian Mapping Authority) API for vasstandsdata (API for water level data).\nReports sea water level using the Object 14230.\nThe data is licensed by the Norwegian Mapping Authority\u2019s under the Creative Commons Attribution 4.0 International (CC BY 4.0) license."
}
}), _define_property(_obj, "thingy91x", {
"id": "thingy91x",
"about": {
"title": "Nordic Thingy:91 X",
"description": "The Nordic Thingy:91 X is a versatile prototyping platform designed for the development of cellular IoT applications. It is built around the nRF9151 System-in-Package (SiP) which supports LTE-M, NB-IoT, GNSS, and NR+, making it suitable for global use. This platform is particularly ideal for asset-tracking applications due to its capability to utilize multiple location tracking methods including cellular, Wi-Fi, and GNSS in conjunction with nRF Cloud Location Services. The device is also equipped with a comprehensive array of sensors that monitor environmental conditions and movement, enhancing its utility in various IoT applications.\nLearn more about the Thingy:91 X on nordicsemi.com/thingy91x."
}
}), _obj);