LoRa & LoRaWAN Explained! TTN Gateway & Device Setup - Cicerone Board Demo

Поделиться
HTML-код
  • Опубликовано: 16 июл 2024
  • This video covers the basics of what LoRa and LoRaWAN are and how to use it in your projects including how to set up a gateway and use The Things Network (TTN).
    Thank you to Move-X for sponsoring this video, please check out their Cicerone board here: www.move-x.it/cicerone-board/. This board is an STM32WL powered board with LoRaWAN connectivity in the Arduino MKR form factor. It features GPS connectivity through the onboard UBlox chip and onboard LiPo charging.
    Visual Electric's video: • How LoRa Modulation re...
    LoRa is a physical layer in the O.S.I network model. In this case the physical layer is RF signals. LoRa is one of many ways to get data over radio waves from a transmitter to a receiver somewhere else and LoRa is a short form of Long Range. LoRa transmissions can travel up to 15km in open rural spaces and up to about 5 kilometres in more dense urban areas.
    LoRaWAN is a wide area network protocol that is built on top of the LoRa modulation that we have just described. Together LoRa and LoRaWAN form a Low Power Wide Area Network (LPWAN). A typical LoRaWAN architecture is arranged in a star topology and consists of end devices, gateways, network servers, application servers and finally an end user application server.
    Chapters
    00:00 Introduction
    00:53 Contents
    01:11 What is LoRa?
    03:02 Modulation
    04:01 Spreading Factors
    04:33 Licence Exempt Bands
    04:56 What is LoRaWAN
    07:08 When to use LoRa?
    07:43 Demo: Gateway Setup
    10:46 Demo: End Device Setup
    13:33 Conclusion
    You can find more embedded systems tutorials and projects on our website learnembeddedsystems.co.uk
    -- Equipment I use regularly --
    The following links are affiliate links where I may make a small percentage on qualifying sales through these links. Use the respective UK or US links listed.
    Budget Soldering Iron: UK: amzn.to/3pQpvUu US: amzn.to/3bBawIJ
    Breadboards: UK: amzn.to/3solZCe US: amzn.to/3dGsHiS
    Jumper Cables: UK: amzn.to/37JfToi US: amzn.to/3r384S9
    Camera: UK: amzn.to/3qKLwFr US: amzn.to/3pK0V7C
    Lens: UK: amzn.to/380lQxp US: amzn.to/3knH3WL
    Tripod: UK: amzn.to/37H0Nzw US: amzn.to/3byKHsV
    All videos and tutorials on this channel and mentioned websites are for educational purposes only.

Комментарии • 10

  • @elijah_9392
    @elijah_9392 Год назад +3

    I love your videos, please never stop.

  • @PCBWay
    @PCBWay Год назад

    Informative as always! 👍

  • @PG-qz6mg
    @PG-qz6mg Год назад

    hello ! thank you for your videos. I'm looking for a tutorial about connecting two Heltec ESP32 Wifi lora node cubecel asr6501sx1262 - do you know where to find it or maybe you will do a tutorial ? the purpose is to build a dashboard with node red an grafana but with a lora network - thanks a lot

  • @YEBOAHOWUSUNTOW
    @YEBOAHOWUSUNTOW Год назад

    how do I solve stream connection lost due to network error on my Lora gateway?

  • @minirop
    @minirop Год назад +1

    I wonder if LoRa is better also for inside? like between my laptop and my router there are 3 doors and like 15 meters (I had to buy a repeater).
    So if I want a small sporadic signal between 2 MCUs at the same distance, is LoRa good enough? (my wifi network is already "saturated" with the computers and phones).

    • @LearnEmbeddedSystems
      @LearnEmbeddedSystems  Год назад

      LoRa sounds like a good solution to that problem. You can set up a point to point system (without a gateway) also.

  • @erich7431
    @erich7431 Год назад

    Thanks for this video. Something I don't understand about TTN : say I want to communicate between 2 devices that are 10km far from each other. Device A is in a zone without surrounding gateways so I need to setp my own. Problem is how do I know that my gateway will be able to relay messages to surrounding gateways in order to reach Device B? I understand TTN is a community mesh LORAWAN network therefore there's no guarantee 1 gateway will be close enough the another one in order to relay messages, is that right? Is there a way to 'simulate' a message travelling from point A to point B with all known TTN available gateways so that we can anticipate whether the message from A will reach B?

    • @LearnEmbeddedSystems
      @LearnEmbeddedSystems  Год назад

      In this configuration using TTN, messages aren't relayed between gateways. Gateways are connected to TTN via the internet so communication is always: End device -> Gateway -> TTN and vice versa. All you need to make sure of is that you are in range of at least 1 gateway and that gateway is connected to the internet.

    • @erich7431
      @erich7431 Год назад

      @@LearnEmbeddedSystems ok I get it now thanks!