Giter Site home page Giter Site logo

Comments (23)

k30r88 avatar k30r88 commented on June 1, 2024 1

hi @brocaar, I am getting multi channel gateway and just arrived from overseas. I have been using single channel gateway in last few month. I will try the multi GW with your development software. Many thanks.I will update you again.

from chirpstack-network-server.

gclairec avatar gclairec commented on June 1, 2024 1

Hi is the 433mhz support still working?

from chirpstack-network-server.

brocaar avatar brocaar commented on June 1, 2024

Hi @mkurnadi, I've added a test-implementation in https://github.com/brocaar/loraserver/tree/test_eu433. For convenience you can download pre-compiled binaries here: https://www.dropbox.com/sh/27n77z9i37jyzob/AACKICcESHiMZ1W5YN6akOM9a?dl=0. To start loraserver with the EU 433 band, use the --band EU_433 flag.

Could you let me know if the following works?

  • data up (node -> server)
  • data down (server -> node)
  • otaa (over-the air activation)

from chirpstack-network-server.

brocaar avatar brocaar commented on June 1, 2024

Hi @mkurnadi I'm looking forward to your test-results :-)

from chirpstack-network-server.

addingama avatar addingama commented on June 1, 2024

Hi @brocaar, I'm helping @mkurnadi to setup loraserver.
I've followed your documentation and install this specific build for 433 band.

I've executed default start command and the server is working and can accessed from browser.
but if I try to add --band option
sudo systemctl start loraserver --band 443_EU

this is the response

systemctl: unrecognized option '--band'

How can I solved this?

Thanks

from chirpstack-network-server.

brocaar avatar brocaar commented on June 1, 2024

You're passing the argument to systemctl, not loraserver. You should change
the loraserver.service file and add the flag there :)

On Fri, Aug 5, 2016, 10:21 dashracer [email protected] wrote:

Hi @brocaar https://github.com/brocaar, I'm helping @mkurnadi
https://github.com/mkurnadi to setup loraserver.
I've followed your documentation and install this specific build for 433
band.

I've executed default start command and the server is working and can
accessed from browser.
but if I try to add --band option
sudo systemctl start loraserver --band 443_EU

this is the response

systemctl: unrecognized option '--band'

How can I solved this?

Thanks


You are receiving this because you were mentioned.

Reply to this email directly, view it on GitHub
https://github.com/brocaar/loraserver/issues/49#issuecomment-237786044,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AAKGeaJPBVCcKtiAHtAQd_NgW7PWxs7Oks5qcvJngaJpZM4JTSk6
.

from chirpstack-network-server.

addingama avatar addingama commented on June 1, 2024

Hi @brocaar ,

LoraServer is working with new band.

Thanks for the support 👍

from chirpstack-network-server.

brocaar avatar brocaar commented on June 1, 2024

Nice! Could you confirm both data up and down is working (e.g. confirmed data up or OTAA)?

from chirpstack-network-server.

k30r88 avatar k30r88 commented on June 1, 2024

Dear @brocaar, we still trying to test this. However we would like to know if lora-gateway-bridge need to be installed in the server or in the gateway ?

from chirpstack-network-server.

brocaar avatar brocaar commented on June 1, 2024

That is up to you to decide, both ways are possible. See also https://docs.loraserver.io/lora-gateway-bridge/getting-started/#strategies

from chirpstack-network-server.

k30r88 avatar k30r88 commented on June 1, 2024

@brocaar we have successfully do data up (node -> server). We monitor the payload by subscribe to topic gateway/b827ebffffa39301/rx

{
"rxInfo": {
"mac": "b827ebffffa39301",
"time": "0001-01-01T00:00:00Z",
"timestamp": 3081371443,
"frequency": 433500000,
"channel": 0,
"rfChain": 0,
"crcStatus": 1,
"codeRate": "4/5",
"rssi": -88,
"loRaSNR": -1,
"size": 48,
"dataRate": {
"modulation": "LORA",
"spreadFactor": 7,
"bandwidth": 125
}
},
"phyPayload": "QG4E8geABAABEJrIQ8DdJLtPAzXd2cgnKSYhjTMkQdHR/AF0oc1PEHC5q8FJ6T9O"
}
gateway id : b827ebffffa39301 in lora-server web app is known as what ?
We still trying to figure out how to retrieve data from lora-server API.

from chirpstack-network-server.

brocaar avatar brocaar commented on June 1, 2024

Hi @k30r88, LoRa Server doesn't have any knowledge about gateways. However, you should create an application and node in LoRa Server (web-interface or API). When configuring your node with the same AppEUI, DevEUI and AppKey you should be able to do an OTAA. Could you let me know if that works?

Receiving data: https://docs.loraserver.io/loraserver/receiving-data/
Sending data: https://docs.loraserver.io/loraserver/sending-data/

from chirpstack-network-server.

brocaar avatar brocaar commented on June 1, 2024

Hi @dashracer I'm looking forward to hear from you if you were be able to send any data from the server to the node and / or were able to perform an OTAA.

from chirpstack-network-server.

k30r88 avatar k30r88 commented on June 1, 2024

@brocaar . I work together with @dashracer , Application have successfully received data on the server side :
image

However we test it using single channel device, frequency only at 4335000.
We will try to perform OTAA. Perhaps you can guide us some tips ?

from chirpstack-network-server.

brocaar avatar brocaar commented on June 1, 2024

@k30r88 ah great! Regarding OTAA, just provision your node with the DevEUI, AppEUI and AppKey and perform a mac join otaa (for the RN2483, this command might be different if you're using a different node). You should see a message on the application/+/node/+/join mqtt topic, and your node should be able to send uplink data afterwards.

from chirpstack-network-server.

shmrymbd avatar shmrymbd commented on June 1, 2024

hi @k30r88 , can you share where is the file you make the changes to support 433? I need to start one similar for 919-928 range. Thanks.

from chirpstack-network-server.

brocaar avatar brocaar commented on June 1, 2024

@shmrymbd see this diff for the changes needed: https://github.com/brocaar/loraserver/compare/test_eu433?expand=1

Note that the band config lives here: https://github.com/brocaar/lorawan/tree/master/band

from chirpstack-network-server.

brocaar avatar brocaar commented on June 1, 2024

@k30r88 @dashracer could you please tell us if both the uplink and downlink is working with this config? Would be great it we finally can merge this band :-)

from chirpstack-network-server.

k30r88 avatar k30r88 commented on June 1, 2024

@brocaar uplink seems to be working, we will try downlink next week. Do you have any suggestion on how to do downlink test ? Is downlink similar to OTAA ?

from chirpstack-network-server.

brocaar avatar brocaar commented on June 1, 2024

Downlink is sending data to your node :-) But if you managed to get OTAA
working, you already sent a downlink payload to your node (in this case not
data but a join-accept message).

On Fri, Sep 30, 2016, 02:52 k30r88 [email protected] wrote:

@brocaar https://github.com/brocaar uplink seems to be working, we will
try downlink next week. Do you have any suggestion on how to do downlink
test ? Is downlink similar to OTAA ?


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/brocaar/loraserver/issues/49#issuecomment-250632167,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AAKGeQTkiKyKTNJEmKR6XCEep_xro0Nsks5qvF1DgaJpZM4JTSk6
.

from chirpstack-network-server.

KSUie-Abel avatar KSUie-Abel commented on June 1, 2024

OS: Arch Linux
loraserver: 0.8.2-1-gf6e02d3
lora-gateway-bridge: 2.1.2

RPi 2: Arch Linux ARM
gateway: RHF0M301
packet_forwarder: 2.2.1

Moteino MEGA + RN2483(RN2483 1.0.1 Dec 15 2015 09:38:09)
Arduino library: TheThingsNetwork-0.17.0, pached for 433MHz

Both ABP and OTAA join ok, and uplink/downlink ok
When I use ABP and reset Moteino, must goto LoRa Server UI, set FCnt to zero

But when I use packet_forwarder-3.1.0, I got the error message:
JSON down: {"txpk":{"imme":false,"tmst":290279995,"freq":433.175,"rfch":0,"powe":10,"modu":"LORA","datr":"SF7BW125","codr":"4/5","ipol":true,"size":17,"data":"IDa54Qt8+kbrNUOSMVNrq74="}}
ERROR: Packet REJECTED, unsupported RF power for TX - 7

from chirpstack-network-server.

brocaar avatar brocaar commented on June 1, 2024

@ksuie hmm, I'm not sure if that error is an issue with the packet-forwarder config or with the band config (given that it worked before). I'll add the EU 433 band config in the next release (+ some more bands). In case you're still experiencing any errors, could you open a new issue?

from chirpstack-network-server.

gclairec avatar gclairec commented on June 1, 2024

Hello, does lora.kyrio.com support the 433 MHz band communication?

from chirpstack-network-server.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.