Order Unfulfilled?

Greetings,

I placed an order for a RAK Gateway last week and have been monitoring the status of the order. My question is, does the fact it shows “unfulfilled” mean there is few weeks of lead time? or is the company on holiday and simply hasn’t managed to get to pending orders?

Cheers,

Coach Allen

Hello, ALlen,We should arrange that soon by today. Sorry for our delay service but we will improve that soon. Let me check with team today

1 Like

@kenyu Thanks homie!

Cheers,

Coach Allen

Received today minus mount brackets. Setting in the window ledge for now. Can’t get any PyCom garbage to connect to TTN through it.

Hello @CoachAllen,

Could you please give me more information. Gateway model, what pycom device you are using, Lopy4 perhaps ? We should be able to help, if we get more information :slight_smile:

Regards
Vladislav

1 Like

RAK7243C

I set it up about 2 hours ago. It has a GSM module but is using the wifi for the back haul. GPS antenna is not plugged in.

LoPy4

from network import LoRa
import socket
import time
import ubinascii

# Initialise LoRa in LORAWAN mode.
# Please pick the region that matches where you are using the device:
# Asia = LoRa.AS923
# Australia = LoRa.AU915
# Europe = LoRa.EU868
# United States = LoRa.US915
lora = LoRa(mode=LoRa.LORAWAN, region=LoRa.US915)

# create an OTAA authentication parameters
app_eui = ubinascii.unhexlify('ADA4DAE3AC12676B')
app_key = ubinascii.unhexlify('11B0282A189B75B0B4D2D8C7FA38548B')

# join a network using OTAA (Over the Air Activation)
lora.join(activation=LoRa.OTAA, auth=(app_eui, app_key), timeout=0)

# wait until the module has joined the network
while not lora.has_joined():
time.sleep(2.5)
print('Not yet joined...')

# create a LoRa socket
s = socket.socket(socket.AF_LORA, socket.SOCK_RAW)

# set the LoRaWAN data rate
s.setsockopt(socket.SOL_LORA, socket.SO_DR, 5)

# make the socket blocking
# (waits for the data to be sent and for the 2 receive windows to expire)
s.setblocking(True)

# send some data
s.send(bytes([0x01, 0x02, 0x03]))

# make the socket non-blocking
# (because if there's no data received it will block forever...)
s.setblocking(False)

# get any data received (if any...)
data = s.recv(64)
print(data)

Hi @CoachAllen,

Did you go through the configuration procedure, choosing the right frequency, ttn as a server, etc.
This is done with the sudo gateway-Co fig command?

@Hobo yes indeed twice. I have switched to ABP and that still won’t work

Managed to get it to join

A post was split to a new topic: Incomplete order recived!