Heltec --> Dragino --> Chirpstack

Hello all,

I am currently trying to connect a Heltec ESP OLED V2 to the Chirpstack. I use a Dragino LPS8N 868Mhz for this.

Chirpstack I have installed in a LTX container, Chirpstack recognizes the Dragino without problems.

Now I am currently trying to connect my Heltec ESP to it, for this I chose a predefined example to send.

#include "heltec.h"
#define BAND    868E6  //you can set band here directly,e.g. 868E6,915E6

int counter = 0;

void setup() {
  
  //WIFI Kit series V1 not support Vext control
  Heltec.begin(true /*DisplayEnable Enable*/, true /*Heltec.LoRa Disable*/, true /*Serial Enable*/, true /*PABOOST Enable*/, BAND /*long BAND*/);

}

void loop() {
  Serial.print("Sending packet: ");
  Serial.println(counter);
  // send packet
  Heltec.LoRa.beginPacket();
  Heltec.LoRa.print("hello ");
  Heltec.LoRa.print(counter);
  Heltec.LoRa.endPacket();
  
  counter++;
  digitalWrite(25, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);                       // wait for a second
  digitalWrite(25, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);                       // wait for a second
}

Unfortunately, however, I don’t see any messages when I go into the Live LORAWAN FRAMES.

Shouldn’t all sensors appear here now that are in the same frequency band, or did I misunderstand something here?

Thanks for the support

I am still a beginner in the field of Lora.

Kind regards

Your code is for LoRa.
You need to find the code for LoRaWAN.