153 questions
0
votes
0
answers
33
views
Lorawan Gateway Gateway Offline in ChirpStack Web UI After Connecting to Local MQTT Broker
I have configured a ChirpStack LoRaWAN setup using a Raspberry Pi and a Seeed WM1302 gateway module. Initially, the LoRaWAN packets were successfully received and verified in the ChirpStack Web UI.
To ...
0
votes
1
answer
55
views
Microchip WLR089 ASF LoRaWAN library initialization
I'm trying to implement a minimal LoRaWAN setup for my WLR089 Xplained PRO. I've set up a simple project using the ASF wizard in Microchip studio 7. I have all the necessary libraries included for my ...
2
votes
0
answers
34
views
ESP32 + 9DOF+ RFM95W + Deep Sleep with LoRaWan
I have developed a LoRaWAN sensor that transmits its data to TTN. The hardware is based on an ESP board. The software for the sensor is written using the Arduino IDE and is based on the LMIC library.
...
3
votes
1
answer
135
views
Class C loraWan implementation
Good morning! I am trying to create code for message exchange via LoRaWAN using a Raspberry Pi Pico with an SX1262 hat link. Initially, the project only involved sending messages at regular intervals ...
0
votes
0
answers
47
views
AWS IoT Sensor Payload to Timestream multiple measure values
We have setup IoT sensor data which is getting inserted to Timestream using AWS Rules. The issue is we want to have a multiple measure values/names in a row instead of each attribute consuming a ...
0
votes
0
answers
55
views
How to resend an event to an HTTP integration in ChirpStack?
I have setup a private LoraWAN network with little hurdles along the way but so far I managed to get everything working very smoothly.
I am using ChirpStack as a Network Server and just a request ...
0
votes
1
answer
64
views
How to change default device_eui, epp_eui, app_key from the program?
I have my custom project on the LoRa RAK3172 module.
To set the DevEui, JoinEui & Appkey I have to set default as
uint8_t default_dev_eui[8] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01};
...
0
votes
0
answers
99
views
Issue with Writing to Flash Memory on STM32WLE5 After Receiving LoRa Data
I’m working with an STM32WLE5 microcontroller, using code generated by STM CubeMX. My project incorporates LoRaWAN modules, follows the EndNode skeleton, and utilizes FreeRTOS (CMSIS V2.0). The common ...
0
votes
0
answers
37
views
How to connect Lora Module(in the pcp) to the LoRa Gateway, Model:LG01-N?
I'm working on connecting the sensors in the pcp to the LoRa gateway, model: LG01-N. To do this, I'll have to connect the LoRa module in the pcp to the LoRa gateway. I can't find any resource or ...
0
votes
0
answers
62
views
Esp32-SE transmitter Lo-Fi (LoRaWan)
I have an "ESP32-SE Lo-Fi"
I need to use the internal antenna of this ESP to send data to a database (LoRaWan)
The database is not made by me but I'm sure it works.
I have tried to use this ...
0
votes
0
answers
113
views
Calculating the MIC of a LoRaWAN package on Join-Request in firmware
Context
I'm currently using TTSS (The Things Stack Sandbox), I'm trying to do an OTAA activation, but I receive a MIC mismatch error, using (this debugging webpage)[https://lorawan-packet-decoder-...
0
votes
0
answers
28
views
Connection to The Things Network whit LR-FHSS
Context
I'm currently trying to connect to TTN whit LR-FHSS modulation, this is suppose to be supported by the Things Stack (Check that here), I'm using a LR1110 (this DevKit), using the LoRaWAN 1.0.4,...
0
votes
0
answers
201
views
Decrypting my Techem WM-bus heat meter didn't work, even while using my AES key
I have a Techem heat meter that speaks WM-bus and I also got an AES key from Techem. Do I need an IV to decrypt my telegram.
I tried using Laravel openssl_decrypt to decrypt.
// Decrypt the payload ...
0
votes
1
answer
53
views
How can I manipulate the syntax of an AT command and assign a method value in Python?
print(bytes(npArray))
print(bytes(npArray).hex())
ser.write(b'AT+DTRX=0,2,16,00003f0101007a00\r')
response = ser.read(100)
print(response.decode())
I have the above snippet in Python, which delivers ...
0
votes
0
answers
194
views
How do I decode the LoRaWAN payload in AWS IoT Core sent by RadioLib?
I am sending a 3-byte payload from LoRa ESP32 using Arduino to program the MCU. I am successfully connecting to AWS IoT Core for LoRaWAN and publishing my uplink payloads to a topic. However, when I ...