Skip to content
English
  • There are no suggestions because the search field is empty.

Nyx Quick start guide

You are looking for the Nyx Quick Start Guide ?

📄 You can view the PDF above or download it here .

1. Product Overview

The solar-powered, wireless IoT sensor NYX is an innovative solution for monitoring indoor environmental parameters. Solar-powered and only 8 mm thin, it offers a maintenance-free and attractive design for indoor spaces.

The sensor detects temperature, relative humidity and ambient light. The sensor is available with LoRaWAN® and mioty® with different sensor configurations.

Please observe the warnings and instructions in the operating instructions to ensure the safety of you, your surroundings and the sensor.

2. Assembly and Installation

Install the wall mount on an interior wall at a height of 1.50 m to 1.80 m in a location with at least 400 lux per day. Ensure a minimum distance of 20 cm from people and operation below 2000 m above sea level.

3. Commissioning and NFC Parameterization

Der Sensor wird im bereits eingeschalteten Zustand geliefert. Die Aktivierung erfolgt über eine NFC App. Dazu wird ein Smartphone benötigt. Die App kann in den jeweiligen App Stores heruntergeladen werden. Suchen Sie dazu einfach nach „Sentinum LinQs" und laden Sie die LinQs App herunter.

Figure 1: NFC tag position overview

Lokalisieren Sie zuerst den Tag auf dem Sensor und anschließend den NFC‑Reader an Ihrem Endgerät. Die genaue Lage des NFC‑Tags am Sensor ist in der folgenden Abbildung dargestellt.

Lage des NFC-Tags am NYX-Sensor
Figure 2: Lage des NFC‑Tags am NYX‑Sensor

4. Payload Decoder – NYX Series


function decodeUplink(input) {
    var decoded = {};
    var bytes = input.bytes;

    if (input.fPort == 1) {

        decoded.base_id = bytes[0] >> 4;
        decoded.major_version = bytes[0] & 0x0F;
        decoded.minor_version = bytes[1] >> 4;
        decoded.product_version = bytes[1] & 0x0F;
        decoded.up_cnt = bytes[2];
        decoded.battery_voltage = ((bytes[3] << 8) | bytes[4]) / 1000.0;
        decoded.internal_temperature =
            ((bytes[5] << 8) | bytes[6]) / 10 - 100;
    }

    return {
        data: decoded,
        warnings: [],
        errors: []
    };
}
LoRaWAN and mioty logos