Git Product home page Git Product logo

e78-lora's Introduction

e78-lora

A small header-only lib to control the Ebyte E78 LoRaWAN chip based on the ASR6601 LPWAN SoC. Feel free to modify necessary values like retry etc. Tested with platformio v6.1 and esp-idf 6.2.

Usage

The library provides a class that's very easy to use:

#include "ebyte-e78.hpp"
#define EX_UART_NUM UART_NUM_2

void cb_func(std::string data)
{
    // handle lorawan downlinks
}

extern "C" void app_main(void)
{
    E78LORAWAN e78{};
    e78.configure(EX_UART_NUM, 26, 27);
    e78.set_downstream_callback(cb_func);
    e78.set_app_eui("APPEUI");
    e78.set_app_key("APPKEY");
    e78.set_dev_eui("DEVEUI");
    e78.set_class(E78LORAWAN::CLASS_C);
    e78.set_tx_power(E78LORAWAN::TX_17_DBM);
    e78.set_confirmation_enable(true);
    e78.save();
    e78.join_network();
    while(1){
        // proceed
    }
}

The registered callback function will be called if there are downlink messages available (HEX, ASCII).

e78-lora's People

Contributors

flixofon avatar

Watchers

 avatar

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.