LoRa Node mit The_Thinks_Network v3.23.0 - ttn ABP Client - ino Sketch

Hallo Forum,

ich nutze die Arduino IDE 2.04 .

Mein Kit Dragino Single Channel LoRa IoT Kit v2 .

Das Kit enthält den Arduino Uno.

https://www.dragino.com/downloads/downloads/LoRa_IoT_Kit/v2-Kit/Single%20Channel%20LoRa%20IoT%20Kit%20v2%20User%20Manual_v1.0.7.pdf

Seite 34

Den folgenden Sketch möchte ich einsetzen:

/*******************************************************************************
 * Copyright (c) 2019 Thomas Telkamp and Matthijs Kooijman
 *
 * Permission is hereby granted, free of charge, to anyone
 * obtaining a copy of this document and accompanying files,
 * to do whatever they want with them without any restriction,
 * including, but not limited to, copying, modification and redistribution.
 * NO WARRANTY OF ANY KIND IS PROVIDED.
 *
 * This example sends a valid LoRaWAN packet with payload "Hello,
 * world!", using frequency and encryption settings matching those of
 * the The Things Network.
 *
 * This uses ABP (Activation-by-personalisation), where a DevAddr and
 * Session keys are preconfigured (unlike OTAA, where a DevEUI and
 * application key is configured, while the DevAddr and session keys are
 * assigned/generated in the over-the-air-activation procedure).
 *
 * Note: LoRaWAN per sub-band duty-cycle limitation is enforced (1% in
 * g1, 0.1% in g2), but not the TTN fair usage policy (which is probably
 * violated by this sketch when left running for longer)!
 *
 * To use this sketch, first register your application and device with
 * the things network, to set or generate a DevAddr, NwkSKey and
 * AppSKey. Each device should have their own unique values for these
 * fields.
 *
 * Do not forget to define the radio type correctly in config.h.
 *
 *******************************************************************************/

#include <dht.h>
#include <lmic.h>
#include <hal/hal.h>
#include <SPI.h>

dht DHT;
#define DHT11_PIN A0
const int ctl_pin=4; //define the output pin of realy
const int flame_pin=3;  //define the input pin of flame sensor

// LoRaWAN NwkSKey, network session key
// This is the default Semtech key, which is used by the early prototype TTN
// network.
static const PROGMEM u1_t NWKSKEY[16] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };

// LoRaWAN AppSKey, application session key
// This is the default Semtech key, which is used by the early prototype TTN
// network.
static const u1_t PROGMEM APPSKEY[16] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };

// LoRaWAN end-device address (DevAddr)
static const u4_t DEVADDR = 0x00000000; // <-- Change this address for every node!

// These callbacks are only used in over-the-air activation, so they are
// left empty here (we cannot leave them out completely unless
// DISABLE_JOIN is set in config.h, otherwise the linker will complain).
void os_getArtEui (u1_t* buf) { }
void os_getDevEui (u1_t* buf) { }
void os_getDevKey (u1_t* buf) { }

static float temperature,humidity,tem,hum;
static uint8_t LPP_data[13] = {0x01,0x67,0x00,0x00,0x02,0x68,0x00,0x03,0x01,0x00,0x04,0x00,0x00}; //0xO1,0x02,0x03,0x04 is Data Channel,0x67,0x68,0x01,0x00 is Data Type
static uint8_t opencml[4]={0x03,0x00,0x64,0xFF},closecml[4]={0x03,0x00,0x00,0xFF}; //the payload of the cayenne or ttn downlink  //0xO1,0x02 is Data Channel,0x67,0x68 is Data Type
static unsigned int count = 1; 

static osjob_t sendjob;

// Schedule TX every this many seconds (might become longer due to duty
// cycle limitations).
const unsigned TX_INTERVAL = 60;

// Pin mapping
const lmic_pinmap lmic_pins = {
    .nss = 10,
    .rxtx = LMIC_UNUSED_PIN,
    .rst = 9,
    .dio = {2, 6, 7},
};

void onEvent (ev_t ev) {
    Serial.print(os_getTime());
    Serial.print(": ");
    switch(ev) {
        case EV_SCAN_TIMEOUT:
            Serial.println(F("EV_SCAN_TIMEOUT"));
            break;
        case EV_BEACON_FOUND:
            Serial.println(F("EV_BEACON_FOUND"));
            break;
        case EV_BEACON_MISSED:
            Serial.println(F("EV_BEACON_MISSED"));
            break;
        case EV_BEACON_TRACKED:
            Serial.println(F("EV_BEACON_TRACKED"));
            break;
        case EV_JOINING:
            Serial.println(F("EV_JOINING"));
            break;
        case EV_JOINED:
            Serial.println(F("EV_JOINED"));
            break;
        case EV_RFU1:
            Serial.println(F("EV_RFU1"));
            break;
        case EV_JOIN_FAILED:
            Serial.println(F("EV_JOIN_FAILED"));
            break;
        case EV_REJOIN_FAILED:
            Serial.println(F("EV_REJOIN_FAILED"));
            break;
        case EV_TXCOMPLETE:
            Serial.println(F("EV_TXCOMPLETE (includes waiting for RX windows)"));
            if (LMIC.txrxFlags & TXRX_ACK)
              Serial.println(F("Received ack"));
           if(LMIC.dataLen>0)
            {
              int i,j=0;
              uint8_t received[4]={0x00,0x00,0x00,0x00};
               Serial.println("Received :");
              for(i=9;i<(9+LMIC.dataLen);i++)   //the received buf
              {
                Serial.print(LMIC.frame[i],HEX);
                received[j]=LMIC.frame[i];
                j++;
                Serial.print(" ");
               }
              Serial.println(); 
            if ((received[0]==opencml[0])&&(received[1]==opencml[1])&&(received[2]==opencml[2])&&(received[3]==opencml[3])) {
              Serial.println("Set pin to HIGH.");
              digitalWrite(ctl_pin, HIGH);
            }
            if ((received[0]==closecml[0])&&(received[1]==closecml[1])&&(received[2]==closecml[2])&&(received[3]==closecml[3])) {
              Serial.println("Set pin to LOW.");
               digitalWrite(ctl_pin, LOW);
            }
            }
            // Schedule next transmission
            os_setTimedCallback(&sendjob, os_getTime()+sec2osticks(TX_INTERVAL), do_send);
            break;
        case EV_LOST_TSYNC:
            Serial.println(F("EV_LOST_TSYNC"));
            break;
        case EV_RESET:
            Serial.println(F("EV_RESET"));
            break;
        case EV_RXCOMPLETE:
            // data received in ping slot
            Serial.println(F("EV_RXCOMPLETE"));
            break;
        case EV_LINK_DEAD:
            Serial.println(F("EV_LINK_DEAD"));
            break;
        case EV_LINK_ALIVE:
            Serial.println(F("EV_LINK_ALIVE"));
            break;
         default:
            Serial.println(F("Unknown event"));
            break;
    }
}

void dhtTem()
{
       int16_t tem_LPP;
       temperature = DHT.read11(DHT11_PIN);    //Read Tmperature data
       tem = DHT.temperature*1.0;      
       humidity = DHT.read11(DHT11_PIN);      //Read humidity data
       hum = DHT.humidity* 1.0; 
       Serial.print("###########    ");
       Serial.print("COUNT=");
       Serial.print(count);
       Serial.println("    ###########");            
       Serial.println(F("The temperature and humidity:"));
       Serial.print("[");
       Serial.print(tem);
       Serial.print("℃");
       Serial.print(",");
       Serial.print(hum);
       Serial.print("%");
       Serial.print("]");
       Serial.println("");
       count++;
       tem_LPP=tem * 10; 
       LPP_data[2] = tem_LPP>>8;
       LPP_data[3] = tem_LPP;
       LPP_data[6] = hum * 2;
}

void pinread()
{  
    int val,val1;
    val=digitalRead(ctl_pin);
    val1=digitalRead(flame_pin);
    if(val==1)
     {
        LPP_data[9]=0x01;
     }
    else
    {
        LPP_data[9]=0x00;
    }
    if(val1==1)
    {
      LPP_data[12]=0x01;
    }
    else
    {
      LPP_data[12]=0x00;
    }
}

void do_send(osjob_t* j){
    // Check if there is not a current TX/RX job running
    if (LMIC.opmode & OP_TXRXPEND) {
        Serial.println(F("OP_TXRXPEND, not sending"));
    } else {
        dhtTem();
        pinread();
        // Prepare upstream data transmission at the next possible time.
        LMIC_setTxData2(1,LPP_data, sizeof(LPP_data), 0);
        Serial.println(F("Packet queued"));
    }
    // Next TX is scheduled after TX_COMPLETE event.
}

void setup() {
    Serial.begin(9600);
    while(!Serial);
    Serial.println("Connect to TTN and Send data to mydevice cayenne(Use DHT11 Sensor):");

    pinMode(ctl_pin,OUTPUT);
    pinMode(flame_pin,INPUT);
//    attachInterrupt(1,fire,LOW);  //no connect Flame sensor should commented this code
    
    #ifdef VCC_ENABLE
    // For Pinoccio Scout boards
    pinMode(VCC_ENABLE, OUTPUT);
    digitalWrite(VCC_ENABLE, HIGH);
    delay(1000);
    #endif

    // LMIC init
    os_init();
    // Reset the MAC state. Session and pending data transfers will be discarded.
    LMIC_reset();

    // Set static session parameters. Instead of dynamically establishing a session
    // by joining the network, precomputed session parameters are be provided.
    #ifdef PROGMEM
    // On AVR, these values are stored in flash and only copied to RAM
    // once. Copy them to a temporary buffer here, LMIC_setSession will
    // copy them into a buffer of its own again.
    uint8_t appskey[sizeof(APPSKEY)];
    uint8_t nwkskey[sizeof(NWKSKEY)];
    memcpy_P(appskey, APPSKEY, sizeof(APPSKEY));
    memcpy_P(nwkskey, NWKSKEY, sizeof(NWKSKEY));
    LMIC_setSession (0x1, DEVADDR, nwkskey, appskey);
    #else
    // If not running an AVR with PROGMEM, just use the arrays directly
    LMIC_setSession (0x1, DEVADDR, NWKSKEY, APPSKEY);
    #endif

    #if defined(CFG_eu868)
    // Set up the channels used by the Things Network, which corresponds
    // to the defaults of most gateways. Without this, only three base
    // channels from the LoRaWAN specification are used, which certainly
    // works, so it is good for debugging, but can overload those
    // frequencies, so be sure to configure the full frequency range of
    // your network here (unless your network autoconfigures them).
    // Setting up channels should happen after LMIC_setSession, as that
    // configures the minimal channel set.
    // NA-US channels 0-71 are configured automatically
    LMIC_setupChannel(0, 868100000, DR_RANGE_MAP(DR_SF12, DR_SF7),  BAND_CENTI);      // g-band
    LMIC_setupChannel(1, 868300000, DR_RANGE_MAP(DR_SF12, DR_SF7B), BAND_CENTI);      // g-band
    LMIC_setupChannel(2, 868500000, DR_RANGE_MAP(DR_SF12, DR_SF7),  BAND_CENTI);      // g-band
    LMIC_setupChannel(3, 867100000, DR_RANGE_MAP(DR_SF12, DR_SF7),  BAND_CENTI);      // g-band
    LMIC_setupChannel(4, 867300000, DR_RANGE_MAP(DR_SF12, DR_SF7),  BAND_CENTI);      // g-band
    LMIC_setupChannel(5, 867500000, DR_RANGE_MAP(DR_SF12, DR_SF7),  BAND_CENTI);      // g-band
    LMIC_setupChannel(6, 867700000, DR_RANGE_MAP(DR_SF12, DR_SF7),  BAND_CENTI);      // g-band
    LMIC_setupChannel(7, 867900000, DR_RANGE_MAP(DR_SF12, DR_SF7),  BAND_CENTI);      // g-band
    LMIC_setupChannel(8, 868800000, DR_RANGE_MAP(DR_FSK,  DR_FSK),  BAND_MILLI);      // g2-band
    // TTN defines an additional channel at 869.525Mhz using SF9 for class B
    // devices' ping slots. LMIC does not have an easy way to define set this
    // frequency and support for class B is spotty and untested, so this
    // frequency is not configured here.
    #elif defined(CFG_us915)
    // NA-US channels 0-71 are configured automatically
    // but only one group of 8 should (a subband) should be active
    // TTN recommends the second sub band, 1 in a zero based count.
    // https://github.com/TheThingsNetwork/gateway-conf/blob/master/US-global_conf.json
    LMIC_selectSubBand(1);
    #endif

    // Disable link check validation
    LMIC_setLinkCheckMode(0);

    // TTN uses SF9 for its RX2 window.
    LMIC.dn2Dr = DR_SF9;

    // Set data rate and transmit power for uplink (note: txpow seems to be ignored by the library)
    LMIC_setDrTxpow(DR_SF7,14);

    // Start job
    do_send(&sendjob);
}

void fire()
{
     LPP_data[12]=0x00;
     dhtTem();
     LMIC_setTxData2(1,LPP_data, sizeof(LPP_data), 0);
     Serial.println("Have fire,the temperature is send");
}

void loop() {
    os_runloop_once();
}

Meine Fehlermeldung beim kompilieren:


Compilation error: 'BB75C78772Exxxxx755E0C203E0B89E6' was not declared in this scope

Vermutetes Problem:

// LoRaWAN NwkSKey, network session key
// This is the default Semtech key, which is used by the early prototype TTN
// network.
static const PROGMEM u1_t NWKSKEY[16] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };

// LoRaWAN AppSKey, application session key
// This is the default Semtech key, which is used by the early prototype TTN
// network.
static const u1_t PROGMEM APPSKEY[16] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };

// LoRaWAN end-device address (DevAddr)
static const u4_t DEVADDR = 0x00000000; // <-- Change this address for every node!

Wie stelle ich die von The Think Network v3 entnommen Keys in die erforderliche Arduino Sketch Form um? Siehe dazu Bild "Seite 34" oder PDF File.

Ist mein Anliegen verständlich oder fehlen weitere Informatioen?

VG
ardianx

EKLAERUNGEN

ABP – Activation by Personalization

ABP ist die Art und Weise, wie ein Endgerät zu einem bestimmten LoRa-Netzwerk gehören kann, ohne unter bestimmten Bedingungen einen Join-Vorgang durchzuführen. Im ABP-Modus verfügt das Endgerät nicht über DevEUI, AppEUI und AppKey, die für das Join-Verfahren unerlässlich sind. Die Aktivierung eines Endgeräts durch Personalisierung bedeutet, dass der DevAddr und die zwei Sitzungsschlüssel Nwk_SKey und App_SKey direkt im Endgerät gespeichert werden, anstatt während des Join-Vorgangs von DevEUI, AppEUI, AppKey und NwkKey abgeleitet zu werden.

Das folgende deutet darauf hin, dass du deinen Key in irgend einen Sketch kopiert hast und dabei irgendwas was vergessen hast so dass der Kompiler das nicht mehr als Daten im Progmem erkennt.

Compilation error: 'BB75C78772Exxxxx755E0C203E0B89E6' was not declared in this scope

Wenn du das nicht findest, bitte exakt DEINEN Sketch posten. Alles.

Die komprimierten Bilder auf dem externen Server sind K*cke. Nur Werbepopups und lesen kann man auch nix. Bilder kannst du hier uploaden.

Sketch

/*******************************************************************************
 * Copyright (c) 2019 Thomas Telkamp and Matthijs Kooijman
 *
 * Permission is hereby granted, free of charge, to anyone
 * obtaining a copy of this document and accompanying files,
 * to do whatever they want with them without any restriction,
 * including, but not limited to, copying, modification and redistribution.
 * NO WARRANTY OF ANY KIND IS PROVIDED.
 *
 * This example sends a valid LoRaWAN packet with payload "Hello,
 * world!", using frequency and encryption settings matching those of
 * the The Things Network.
 *
 * This uses ABP (Activation-by-personalisation), where a DevAddr and
 * Session keys are preconfigured (unlike OTAA, where a DevEUI and
 * application key is configured, while the DevAddr and session keys are
 * assigned/generated in the over-the-air-activation procedure).
 *
 * Note: LoRaWAN per sub-band duty-cycle limitation is enforced (1% in
 * g1, 0.1% in g2), but not the TTN fair usage policy (which is probably
 * violated by this sketch when left running for longer)!
 *
 * To use this sketch, first register your application and device with
 * the things network, to set or generate a DevAddr, NwkSKey and
 * AppSKey. Each device should have their own unique values for these
 * fields.
 *
 * Do not forget to define the radio type correctly in config.h.
 *
 *******************************************************************************/

Inhalt gelöscht, weil pers. Daten enthalten waren.

Weil ich neu bin kann ich nichts uploaden.
Deswegen der Link von imgur.

das ist kein Array mit 16 byte.
Du musst das in der art haben

static const u1_t PROGMEM APPSKEY[16] = {  0x45, 0x79, 0x68 ...

P.S.: du sollst das Dinführungstutorial lesen da steht vermutlich drinnen was du tun musst um bilder zu posten (zumindest 1 pro Thread).

Genau da liegt mein Problem.

Wie muss ich bei der Konvertierung vorgehen?

Die Anleitung https://www.dragino.com/downloads/downloads/LoRa_IoT_Kit/v2-Kit/Single%20Channel%20LoRa%20IoT%20Kit%20v2%20User%20Manual_v1.0.7.pdf verstehe ich nicht so richtig.

nimm die Schaltflächen in TTN hinter dem Feld wo du das rauspobierst und probier dir Formate durch, das gibts sicher.

Das gibt es bei https://www.thethingsnetwork.org/ nicht bzw. ich finde es nicht.

eigenartig, gerade eben gabs das noch:

1 Like

Danke, eigenartig ist das nicht, es liegt an meinem Kenntnisstand.

Jetzt bekomme ich folgenden Fehler:

Compilation error: expected unqualified-id before numeric constant

Auszung vom Sketch

// LoRaWAN end-device address (DevAddr)
static const u4_t DEVADDR = 0x26, xxxx, xxxx, 0xF1; // <-- Change this address for every node!

Ist das Format so richtig eingegeben?

Klammer fehlt

Auszug aus dem Original Sketch von GitHub


// LoRaWAN NwkSKey, network session key
// This is the default Semtech key, which is used by the early prototype TTN
// network.
static const PROGMEM u1_t NWKSKEY[16] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };

// LoRaWAN AppSKey, application session key
// This is the default Semtech key, which is used by the early prototype TTN
// network.
static const u1_t PROGMEM APPSKEY[16] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };

// LoRaWAN end-device address (DevAddr)
static const u4_t DEVADDR = 0x00000000; // <-- Change this address for every node!

Da ist keine Klammer gesetzt.

Muss ich mir den Wert in anderem Format von ttn holen?
D. h. im uint32_t Format ?

Als ist typedef int32_t ---------> s4_t;

Mit der Änderung gibt es als Fehlermeldung:


/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:73:53: error: stray '\302' in program
   <title>Arduino-Profile-Examples/dht.cpp at master · dragino/Arduino-Profile-Examples · GitHub</title>
                                                     ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:73:54: error: stray '\267' in program
   <title>Arduino-Profile-Examples/dht.cpp at master · dragino/Arduino-Profile-Examples · GitHub</title>
                                                      ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:73:89: error: stray '\302' in program
   <title>Arduino-Profile-Examples/dht.cpp at master · dragino/Arduino-Profile-Examples · GitHub</title>
                                                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:73:90: error: stray '\267' in program
   <title>Arduino-Profile-Examples/dht.cpp at master · dragino/Arduino-Profile-Examples · GitHub</title>
                                                                                          ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:557:10: error: missing terminating ' character
     <!-- '"` --><!-- </textarea></xmp> --></option></form><form class="js-site-search-form" role="search" aria-label="Site" data-scope-type="Repository" data-scope-id="76871631" data-scoped-search-url="/dragino/Arduino-Profile-Examples/search" data-owner-scoped-search-url="/users/dragino/search" data-unscoped-search-url="/search" data-turbo="false" action="/dragino/Arduino-Profile-Examples/search" accept-charset="UTF-8" method="get">
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:614:75: error: stray '\342' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                           ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:614:76: error: stray '\206' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                            ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:614:77: error: stray '\265' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:619:56: error: stray '\342' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:619:57: error: stray '\206' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:619:58: error: stray '\265' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                          ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:661:75: error: stray '\342' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                           ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:661:76: error: stray '\206' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                            ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:661:77: error: stray '\265' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:666:56: error: stray '\342' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:666:57: error: stray '\206' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:666:58: error: stray '\265' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                          ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:699:75: error: stray '\342' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                           ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:699:76: error: stray '\206' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                            ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:699:77: error: stray '\265' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:704:56: error: stray '\342' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:704:57: error: stray '\206' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:704:58: error: stray '\265' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                          ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:737:75: error: stray '\342' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                           ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:737:76: error: stray '\206' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                            ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:737:77: error: stray '\265' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:742:56: error: stray '\342' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:742:57: error: stray '\206' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:742:58: error: stray '\265' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                          ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1114:25: error: missing terminating " character
             data-action="
                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1115:41: error: stray '#' in program
               input-entered:ref-selector#inputEntered
                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1116:40: error: stray '#' in program
               tab-selected:ref-selector#tabSelected
                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1117:38: error: stray '#' in program
               focus-list:ref-selector#focusFirstListMember
                                      ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1118:13: error: missing terminating " character
             "
             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1167:25: error: missing terminating " character
             data-action="
                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1168:41: error: stray '#' in program
               input-entered:ref-selector#inputEntered
                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1169:40: error: stray '#' in program
               tab-selected:ref-selector#tabSelected
                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1170:38: error: stray '#' in program
               focus-list:ref-selector#focusFirstListMember
                                      ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1171:13: error: missing terminating " character
             "
             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1635:72: error: stray '#' in program
           <td id="LC42" class="blob-code blob-code-inner js-file-line">#<span class="pl-k">include</span> <span class="pl-s"><span class="pl-pds">&quot;</span>dht.h<span class="pl-pds">&quot;</span></span></td>
                                                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:2332:12: error: missing terminating ' character
       <!-- '"` --><!-- </textarea></xmp> --></option></form><form class="js-jump-to-line-form Box-body d-flex" data-turbo="false" action="" accept-charset="UTF-8" method="get">
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:2407:12: error: stray '\342' in program
     You can’t perform that action at this time.
            ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:2407:13: error: stray '\200' in program
     You can’t perform that action at this time.
             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:2407:14: error: stray '\231' in program
     You can’t perform that action at this time.
              ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:9:1: error: expected unqualified-id before '<' token
 <!DOCTYPE html>
 ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:205:23: error: 'up' does not name a type
             Sign&nbsp;up
                       ^~
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:428:19: error: 'Automation' does not name a type
       CI/CD &amp; Automation
                   ^~~~~~~~~~
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:805:25: error: expected unqualified-id before '<' token
       <div>{{ message }}</div>
                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1153:97: error: expected unqualified-id before '<' token
     <span class="flex-1 css-truncate css-truncate-overflow {{ isFilteringClass }}">{{ refName }}</span>
                                                                                                 ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1195:97: error: expected unqualified-id before '<' token
     <span class="flex-1 css-truncate css-truncate-overflow {{ isFilteringClass }}">{{ refName }}</span>
                                                                                                 ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1316:61: error: expected unqualified-id before '<' token
       <div class="Skeleton Skeleton--text col-5 ml-2">&nbsp;</div>
                                                             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1320:56: error: expected unqualified-id before '<' token
       <div class="Skeleton Skeleton--text col-1">&nbsp;</div>
                                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1635:153: error: expected unqualified-id before '<' token
           <td id="LC42" class="blob-code blob-code-inner js-file-line">#<span class="pl-k">include</span> <span class="pl-s"><span class="pl-pds">&quot;</span>dht.h<span class="pl-pds">&quot;</span></span></td>
                                                                                                                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1635:192: error: expected unqualified-id before '<' token
           <td id="LC42" class="blob-code blob-code-inner js-file-line">#<span class="pl-k">include</span> <span class="pl-s"><span class="pl-pds">&quot;</span>dht.h<span class="pl-pds">&quot;</span></span></td>
                                                                                                                                                                                                ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1752:73: error: expected unqualified-id before '<' token
           <td id="LC70" class="blob-code blob-code-inner js-file-line">}</td>
                                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1860:73: error: expected unqualified-id before '<' token
           <td id="LC96" class="blob-code blob-code-inner js-file-line">}</td>
                                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:2278:74: error: expected unqualified-id before '<' token
           <td id="LC197" class="blob-code blob-code-inner js-file-line">}</td>
                                                                          ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:2367:16: error: expected unqualified-id before numeric constant
         &copy; 2022 GitHub, Inc.
                ^~~~
Multiple libraries were found for "lmic.h"
  Used: /media/arianx/Arduino/libraries/MCCI_LoRaWAN_LMIC_library
  Not used: /media/arianx/Arduino/libraries/IBM_LMIC_framework
exit status 1

Compilation error: exit status 1

Letzte Zeile:

Multiple libraries were found for "lmic.h"
  Used: /media/arianx/Arduino/libraries/MCCI_LoRaWAN_LMIC_library
  Not used: /media/arianx/Arduino/libraries/IBM_LMIC_framework
exit status 1

Compilation error: exit status 1

Was bedeutet das?

Wie löse ich das Problem?

Die MCCI_LoRaWAN_LMIC_library habe ich deinstalliert.

Fehlermeldung jetzt:

/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:73:53: error: stray '\302' in program
   <title>Arduino-Profile-Examples/dht.cpp at master · dragino/Arduino-Profile-Examples · GitHub</title>
                                                     ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:73:54: error: stray '\267' in program
   <title>Arduino-Profile-Examples/dht.cpp at master · dragino/Arduino-Profile-Examples · GitHub</title>
                                                      ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:73:89: error: stray '\302' in program
   <title>Arduino-Profile-Examples/dht.cpp at master · dragino/Arduino-Profile-Examples · GitHub</title>
                                                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:73:90: error: stray '\267' in program
   <title>Arduino-Profile-Examples/dht.cpp at master · dragino/Arduino-Profile-Examples · GitHub</title>
                                                                                          ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:557:10: error: missing terminating ' character
     <!-- '"` --><!-- </textarea></xmp> --></option></form><form class="js-site-search-form" role="search" aria-label="Site" data-scope-type="Repository" data-scope-id="76871631" data-scoped-search-url="/dragino/Arduino-Profile-Examples/search" data-owner-scoped-search-url="/users/dragino/search" data-unscoped-search-url="/search" data-turbo="false" action="/dragino/Arduino-Profile-Examples/search" accept-charset="UTF-8" method="get">
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:614:75: error: stray '\342' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                           ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:614:76: error: stray '\206' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                            ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:614:77: error: stray '\265' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:619:56: error: stray '\342' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:619:57: error: stray '\206' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:619:58: error: stray '\265' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                          ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:661:75: error: stray '\342' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                           ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:661:76: error: stray '\206' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                            ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:661:77: error: stray '\265' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:666:56: error: stray '\342' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:666:57: error: stray '\206' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:666:58: error: stray '\265' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                          ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:699:75: error: stray '\342' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                           ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:699:76: error: stray '\206' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                            ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:699:77: error: stray '\265' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:704:56: error: stray '\342' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:704:57: error: stray '\206' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:704:58: error: stray '\265' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                          ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:737:75: error: stray '\342' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                           ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:737:76: error: stray '\206' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                            ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:737:77: error: stray '\265' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:742:56: error: stray '\342' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:742:57: error: stray '\206' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:742:58: error: stray '\265' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                          ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1114:25: error: missing terminating " character
             data-action="
                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1115:41: error: stray '#' in program
               input-entered:ref-selector#inputEntered
                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1116:40: error: stray '#' in program
               tab-selected:ref-selector#tabSelected
                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1117:38: error: stray '#' in program
               focus-list:ref-selector#focusFirstListMember
                                      ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1118:13: error: missing terminating " character
             "
             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1167:25: error: missing terminating " character
             data-action="
                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1168:41: error: stray '#' in program
               input-entered:ref-selector#inputEntered
                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1169:40: error: stray '#' in program
               tab-selected:ref-selector#tabSelected
                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1170:38: error: stray '#' in program
               focus-list:ref-selector#focusFirstListMember
                                      ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1171:13: error: missing terminating " character
             "
             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1635:72: error: stray '#' in program
           <td id="LC42" class="blob-code blob-code-inner js-file-line">#<span class="pl-k">include</span> <span class="pl-s"><span class="pl-pds">&quot;</span>dht.h<span class="pl-pds">&quot;</span></span></td>
                                                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:2332:12: error: missing terminating ' character
       <!-- '"` --><!-- </textarea></xmp> --></option></form><form class="js-jump-to-line-form Box-body d-flex" data-turbo="false" action="" accept-charset="UTF-8" method="get">
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:2407:12: error: stray '\342' in program
     You can’t perform that action at this time.
            ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:2407:13: error: stray '\200' in program
     You can’t perform that action at this time.
             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:2407:14: error: stray '\231' in program
     You can’t perform that action at this time.
              ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:9:1: error: expected unqualified-id before '<' token
 <!DOCTYPE html>
 ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:205:23: error: 'up' does not name a type
             Sign&nbsp;up
                       ^~
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:428:19: error: 'Automation' does not name a type
       CI/CD &amp; Automation
                   ^~~~~~~~~~
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:805:25: error: expected unqualified-id before '<' token
       <div>{{ message }}</div>
                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1153:97: error: expected unqualified-id before '<' token
     <span class="flex-1 css-truncate css-truncate-overflow {{ isFilteringClass }}">{{ refName }}</span>
                                                                                                 ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1195:97: error: expected unqualified-id before '<' token
     <span class="flex-1 css-truncate css-truncate-overflow {{ isFilteringClass }}">{{ refName }}</span>
                                                                                                 ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1316:61: error: expected unqualified-id before '<' token
       <div class="Skeleton Skeleton--text col-5 ml-2">&nbsp;</div>
                                                             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1320:56: error: expected unqualified-id before '<' token
       <div class="Skeleton Skeleton--text col-1">&nbsp;</div>
                                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1635:153: error: expected unqualified-id before '<' token
           <td id="LC42" class="blob-code blob-code-inner js-file-line">#<span class="pl-k">include</span> <span class="pl-s"><span class="pl-pds">&quot;</span>dht.h<span class="pl-pds">&quot;</span></span></td>
                                                                                                                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1635:192: error: expected unqualified-id before '<' token
           <td id="LC42" class="blob-code blob-code-inner js-file-line">#<span class="pl-k">include</span> <span class="pl-s"><span class="pl-pds">&quot;</span>dht.h<span class="pl-pds">&quot;</span></span></td>
                                                                                                                                                                                                ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1752:73: error: expected unqualified-id before '<' token
           <td id="LC70" class="blob-code blob-code-inner js-file-line">}</td>
                                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1860:73: error: expected unqualified-id before '<' token
           <td id="LC96" class="blob-code blob-code-inner js-file-line">}</td>
                                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:2278:74: error: expected unqualified-id before '<' token
           <td id="LC197" class="blob-code blob-code-inner js-file-line">}</td>
                                                                          ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:2367:16: error: expected unqualified-id before numeric constant
         &copy; 2022 GitHub, Inc.
                ^~~~

exit status 1

Compilation error: exit status 1

Wie löse ich das Problem?

Loesungsansaetze:

https://forum.arduino.cc/t/dragino-lora-shield-868mhz-v1-4-arduino-uno/579116/4

https://stefan.schultheis.at/2017/lora-sensor-arduino-lora-shield/#comments

bitte schau noch mal genau hin:

NWKSKEY und APPSKEY sind Arrays, die musst in einzelnen bytes (in HEX) angeben getrennt mit Komma, runderhum eine Klammer.

die DEVADDR ist eine 4 byte Variable, die brauchst nur als 0x26272829 angeben (oder was auch immer).

// LoRaWAN NwkSKey, network session key
// This is the default Semtech key, which is used by the early prototype TTN
// network.
static const PROGMEM u1_t NWKSKEY[16] = { 0xBB, 0x75, 0xC7, 0x87, 0x72, XXXX, 0x5F, 0x0A, 0x75, 0x5E, 0x0C, XXXX, 0x3E, 0x0B, 0x89, 0xE6 };

// LoRaWAN AppSKey, application session key
// This is the default Semtech key, which is used by the early prototype TTN
// network.
static const u1_t PROGMEM APPSKEY[16] = { 0xBB, 0x75, 0xC7, 0x87, 0x72, XXXX, 0x5F, 0x0A, 0x75, 0x5E, 0x0C, XXXX, 0x3E, 0x0B, 0x89, 0xE6 };

// LoRaWAN end-device address (DevAddr)
static const u4_t DEVADDR = 0x260XXXX1; // <-- Change this address for every node!

So sieht der entsprechend Part jetzt aus.
XXXX wurde zur Anonymisierung gesetzt.

Jetziger Status:

/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:73:53: error: stray '\302' in program
   <title>Arduino-Profile-Examples/dht.cpp at master · dragino/Arduino-Profile-Examples · GitHub</title>
                                                     ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:73:54: error: stray '\267' in program
   <title>Arduino-Profile-Examples/dht.cpp at master · dragino/Arduino-Profile-Examples · GitHub</title>
                                                      ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:73:89: error: stray '\302' in program
   <title>Arduino-Profile-Examples/dht.cpp at master · dragino/Arduino-Profile-Examples · GitHub</title>
                                                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:73:90: error: stray '\267' in program
   <title>Arduino-Profile-Examples/dht.cpp at master · dragino/Arduino-Profile-Examples · GitHub</title>
                                                                                          ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:557:10: error: missing terminating ' character
     <!-- '"` --><!-- </textarea></xmp> --></option></form><form class="js-site-search-form" role="search" aria-label="Site" data-scope-type="Repository" data-scope-id="76871631" data-scoped-search-url="/dragino/Arduino-Profile-Examples/search" data-owner-scoped-search-url="/users/dragino/search" data-unscoped-search-url="/search" data-turbo="false" action="/dragino/Arduino-Profile-Examples/search" accept-charset="UTF-8" method="get">
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:614:75: error: stray '\342' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                           ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:614:76: error: stray '\206' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                            ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:614:77: error: stray '\265' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:619:56: error: stray '\342' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:619:57: error: stray '\206' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:619:58: error: stray '\265' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                          ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:661:75: error: stray '\342' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                           ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:661:76: error: stray '\206' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                            ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:661:77: error: stray '\265' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:666:56: error: stray '\342' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:666:57: error: stray '\206' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:666:58: error: stray '\265' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                          ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:699:75: error: stray '\342' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                           ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:699:76: error: stray '\206' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                            ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:699:77: error: stray '\265' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:704:56: error: stray '\342' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:704:57: error: stray '\206' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:704:58: error: stray '\265' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                          ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:737:75: error: stray '\342' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                           ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:737:76: error: stray '\206' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                            ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:737:77: error: stray '\265' in program
       <span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
                                                                             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:742:56: error: stray '\342' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:742:57: error: stray '\206' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:742:58: error: stray '\265' in program
       <span class="d-inline-block ml-1 v-align-middle">↵</span>
                                                          ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1114:25: error: missing terminating " character
             data-action="
                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1115:41: error: stray '#' in program
               input-entered:ref-selector#inputEntered
                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1116:40: error: stray '#' in program
               tab-selected:ref-selector#tabSelected
                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1117:38: error: stray '#' in program
               focus-list:ref-selector#focusFirstListMember
                                      ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1118:13: error: missing terminating " character
             "
             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1167:25: error: missing terminating " character
             data-action="
                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1168:41: error: stray '#' in program
               input-entered:ref-selector#inputEntered
                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1169:40: error: stray '#' in program
               tab-selected:ref-selector#tabSelected
                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1170:38: error: stray '#' in program
               focus-list:ref-selector#focusFirstListMember
                                      ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1171:13: error: missing terminating " character
             "
             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1635:72: error: stray '#' in program
           <td id="LC42" class="blob-code blob-code-inner js-file-line">#<span class="pl-k">include</span> <span class="pl-s"><span class="pl-pds">&quot;</span>dht.h<span class="pl-pds">&quot;</span></span></td>
                                                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:2332:12: error: missing terminating ' character
       <!-- '"` --><!-- </textarea></xmp> --></option></form><form class="js-jump-to-line-form Box-body d-flex" data-turbo="false" action="" accept-charset="UTF-8" method="get">
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:2407:12: error: stray '\342' in program
     You can’t perform that action at this time.
            ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:2407:13: error: stray '\200' in program
     You can’t perform that action at this time.
             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:2407:14: error: stray '\231' in program
     You can’t perform that action at this time.
              ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:9:1: error: expected unqualified-id before '<' token
 <!DOCTYPE html>
 ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:205:23: error: 'up' does not name a type
             Sign&nbsp;up
                       ^~
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:428:19: error: 'Automation' does not name a type
       CI/CD &amp; Automation
                   ^~~~~~~~~~
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:805:25: error: expected unqualified-id before '<' token
       <div>{{ message }}</div>
                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1153:97: error: expected unqualified-id before '<' token
     <span class="flex-1 css-truncate css-truncate-overflow {{ isFilteringClass }}">{{ refName }}</span>
                                                                                                 ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1195:97: error: expected unqualified-id before '<' token
     <span class="flex-1 css-truncate css-truncate-overflow {{ isFilteringClass }}">{{ refName }}</span>
                                                                                                 ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1316:61: error: expected unqualified-id before '<' token
       <div class="Skeleton Skeleton--text col-5 ml-2">&nbsp;</div>
                                                             ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1320:56: error: expected unqualified-id before '<' token
       <div class="Skeleton Skeleton--text col-1">&nbsp;</div>
                                                        ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1635:153: error: expected unqualified-id before '<' token
           <td id="LC42" class="blob-code blob-code-inner js-file-line">#<span class="pl-k">include</span> <span class="pl-s"><span class="pl-pds">&quot;</span>dht.h<span class="pl-pds">&quot;</span></span></td>
                                                                                                                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1635:192: error: expected unqualified-id before '<' token
           <td id="LC42" class="blob-code blob-code-inner js-file-line">#<span class="pl-k">include</span> <span class="pl-s"><span class="pl-pds">&quot;</span>dht.h<span class="pl-pds">&quot;</span></span></td>
                                                                                                                                                                                                ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1752:73: error: expected unqualified-id before '<' token
           <td id="LC70" class="blob-code blob-code-inner js-file-line">}</td>
                                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:1860:73: error: expected unqualified-id before '<' token
           <td id="LC96" class="blob-code blob-code-inner js-file-line">}</td>
                                                                         ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:2278:74: error: expected unqualified-id before '<' token
           <td id="LC197" class="blob-code blob-code-inner js-file-line">}</td>
                                                                          ^
/media/arianx/Arduino/libraries/DFRobot_DHT11/dht.cpp:2367:16: error: expected unqualified-id before numeric constant
         &copy; 2022 GitHub, Inc.
                ^~~~

exit status 1

Compilation error: exit status 1

Hast Du den Text evtl. aus dem Browser oder einem anderen Programm kopiert? Du hast da Zeichen drin, die nicht rein gehören.
Hol die Dir die DFRobot_DHT11 noch mal direkt.

Gruß Tommy

Hallo

diesen Sketch habe ich nur:


https://github.com/dragino/Arduino-Profile-Examples/tree/master/libraries/Dragino/examples/IoTServer/Cayenne%20and%20TTN/cayenne%20and%20ttn%20example/lora_shield%20DHT11%20and%20Relay%20examples/lora_shield_cayenne_and_ttn-abpClient

Wie muss ich den DFRobot_DHT11 einbauen, ist das wirklich erforderlich? Oder ist DFRobot_DHT11 eine library?

"Already installed DFRobot_DHT11@1.0.0" habe ich mit der Arudion IDE 2.0.3 installiert.

Wie sollen wir bei den ganzen Fragmentbröckchen, die Du uns vorwirfst, wissen, was Du brauchst und was nicht?

Gruß Tommy

Die librarys von DFRobot_DHT11 deinstalliert und neu installiert.
Der erfolgte mit der Arduion IDE 2.0.3 Umgebung.

/media/arianx/Download/LoRa_2022/lora_shield_cayenne_and_ttn-abpClient-2022-12-10/lora_shield_cayenne_and_ttn-abpClient-2022-12-10.ino:32:10: fatal error: dht.h: No such file or directory
 #include <dht.h>
          ^~~~~~~
compilation terminated.

exit status 1

Compilation error: dht.h: No such file or directory

Jetzt bekomme ich diesen Fehler.

Wie kann ich das besser machen?

Diese library habe ich:

.
├── Adafruit_Unified_Sensor
│   ├── Adafruit_Sensor.cpp
│   ├── Adafruit_Sensor.h
│   ├── examples
│   │   └── sensortest
│   │       └── sensortest.ino
│   ├── library.properties
│   ├── LICENSE.txt
│   └── README.md
├── AM232X
│   ├── AM232X.cpp
│   ├── AM232X.h
│   ├── CHANGELOG.md
│   ├── examples
│   │   ├── AM2320
│   │   │   └── AM2320.ino
│   │   ├── AM2320_ESP32
│   │   │   └── AM2320_ESP32.ino
│   │   ├── AM2320_test
│   │   │   └── AM2320_test.ino
│   │   ├── AM2322
│   │   │   └── AM2322.ino
│   │   └── AM2322_plotter
│   │       └── AM2322_plotter.ino
│   ├── keywords.txt
│   ├── library.json
│   ├── library.properties
│   ├── LICENSE
│   ├── README.md
│   └── test
│       └── unit_test_001.cpp
├── Arduino_APA102
│   ├── docs
│   │   ├── api.md
│   │   └── readme.md
│   ├── examples
│   │   ├── Fade
│   │   │   └── Fade.ino
│   │   ├── Low_Power
│   │   │   └── Low_Power.ino
│   │   └── Simple_Color
│   │       └── Simple_Color.ino
│   ├── keywords.txt
│   ├── library.properties
│   ├── LICENSE
│   ├── README.md
│   └── src
│       ├── Arduino_APA102.cpp
│       └── Arduino_APA102.h
├── Arduino_APDS9960
│   ├── docs
│   │   ├── api.md
│   │   └── readme.md
│   ├── examples
│   │   ├── ColorSensor
│   │   │   └── ColorSensor.ino
│   │   ├── FullExample
│   │   │   └── FullExample.ino
│   │   ├── GestureSensor
│   │   │   └── GestureSensor.ino
│   │   └── ProximitySensor
│   │       └── ProximitySensor.ino
│   ├── keywords.txt
│   ├── library.properties
│   ├── LICENSE.txt
│   ├── README.adoc
│   └── src
│       ├── Arduino_APDS9960.cpp
│       └── Arduino_APDS9960.h
├── Arduino_AVRSTL
│   ├── keywords.txt
│   ├── library.properties
│   ├── LICENSE
│   ├── README.md
│   └── src
│       ├── abi
│       │   ├── abi.cpp
│       │   ├── libgcc_eh
│       │   │   ├── Makefile
│       │   │   └── Makefile.in
│       │   └── libsupc
│       │       ├── Makefile
│       │       └── Makefile.in
│       ├── algorithm
│       ├── algorithm.cpp
│       ├── Arduino_AVRSTL.cpp
│       ├── Arduino_AVRSTL.h
│       ├── array
│       ├── associative_base
│       ├── associative_base.cpp
│       ├── basic_definitions
│       ├── bitset
│       ├── bitset.cpp
│       ├── cassert
│       ├── cctype
│       ├── cerrno
│       ├── cfloat
│       ├── char_traits
│       ├── char_traits.cpp
│       ├── cinttypes
│       ├── climits
│       ├── clocale
│       ├── cmath
│       ├── complex
│       ├── complex.cpp
│       ├── csetjmp
│       ├── csignal
│       ├── cstdarg
│       ├── cstddef
│       ├── cstdint
│       ├── cstdio
│       ├── cstdlib
│       ├── cstring
│       ├── ctime
│       ├── cwchar
│       ├── cwctype
│       ├── del_op.cpp
│       ├── del_opnt.cpp
│       ├── del_ops.cpp
│       ├── del_opv.cpp
│       ├── del_opvnt.cpp
│       ├── del_opvs.cpp
│       ├── deque
│       ├── deque.cpp
│       ├── eh_alloc.cpp
│       ├── eh_globals.cpp
│       ├── exception
│       ├── exception.cpp
│       ├── func_exception
│       ├── func_exception.cpp
│       ├── functional
│       ├── initializer_list
│       ├── iomanip
│       ├── iomanip.cpp
│       ├── ios
│       ├── ios.cpp
│       ├── iosfwd
│       ├── iostream
│       ├── iostream.cpp
│       ├── istream
│       ├── istream.cpp
│       ├── istream_helpers
│       ├── iterator
│       ├── iterator_base
│       ├── iterator.cpp
│       ├── limits
│       ├── limits.cpp
│       ├── list
│       ├── list.cpp
│       ├── locale
│       ├── locale.cpp
│       ├── map
│       ├── map.cpp
│       ├── memory
│       ├── new
│       ├── new_handler.cpp
│       ├── new_op.cpp
│       ├── new_opnt.cpp
│       ├── new_opv.cpp
│       ├── new_opvnt.cpp
│       ├── numeric
│       ├── numeric.cpp
│       ├── ostream
│       ├── ostream.cpp
│       ├── ostream_helpers
│       ├── ostream_helpers.cpp
│       ├── queue
│       ├── queue.cpp
│       ├── serstream
│       ├── set
│       ├── set.cpp
│       ├── sstream
│       ├── sstream.cpp
│       ├── stack
│       ├── stack.cpp
│       ├── stdexcept
│       ├── stdexcept.cpp
│       ├── streambuf
│       ├── streambuf.cpp
│       ├── string
│       ├── string.cpp
│       ├── string_iostream
│       ├── support
│       ├── support.cpp
│       ├── system_configuration.h
│       ├── typeinfo
│       ├── typeinfo.cpp
│       ├── type_traits
│       ├── unwind-cxx.h
│       ├── utility
│       ├── utility.cpp
│       ├── valarray
│       ├── valarray.cpp
│       ├── vector
│       └── vector.cpp
├── Arduino_BHY2
│   ├── examples
│   │   ├── App
│   │   │   └── App.ino
│   │   ├── BHYFirmwareUpdate
│   │   │   ├── BHYFirmwareUpdate.ino
│   │   │   ├── conv.sh
│   │   │   └── fw.h
│   │   ├── DataHarvester
│   │   │   ├── DataHarvester.ino
│   │   │   └── extras
│   │   │       └── Commander
│   │   │           ├── Commander.py
│   │   │           └── requirements.txt
│   │   ├── Fail_Safe_flasher
│   │   │   ├── Fail_Safe_flasher.ino
│   │   │   └── fw.h
│   │   ├── ReadSensorConfiguration
│   │   │   └── ReadSensorConfiguration.ino
│   │   ├── ShowSensorList
│   │   │   └── ShowSensorList.ino
│   │   ├── Standalone
│   │   │   └── Standalone.ino
│   │   └── StandaloneFlashStorage
│   │       └── StandaloneFlashStorage.ino
│   ├── library.properties
│   ├── LICENSE.txt
│   ├── README.md
│   └── src
│       ├── Arduino_BHY2.cpp
│       ├── Arduino_BHY2.h
│       ├── BLEHandler.cpp
│       ├── BLEHandler.h
│       ├── bosch
│       │   ├── bhy2.c
│       │   ├── bhy2_defs.h
│       │   ├── bhy2.h
│       │   ├── bhy2_hif.c
│       │   ├── bhy2_hif.h
│       │   ├── bhy2_parse.c
│       │   ├── bhy2_parse.h
│       │   └── common
│       │       ├── common.cpp
│       │       └── common.h
│       ├── BoschParser.cpp
│       ├── BoschParser.h
│       ├── BoschSensortec.cpp
│       ├── BoschSensortec.h
│       ├── DFUManager.cpp
│       ├── DFUManager.h
│       ├── EslovHandler.cpp
│       ├── EslovHandler.h
│       └── sensors
│           ├── DataParser.cpp
│           ├── DataParser.h
│           ├── SensorActivity.h
│           ├── SensorBSEC.h
│           ├── SensorClass.cpp
│           ├── SensorClass.h
│           ├── Sensor.h
│           ├── SensorID.h
│           ├── SensorManager.cpp
│           ├── SensorManager.h
│           ├── SensorOrientation.h
│           ├── SensorQuaternion.h
│           ├── SensorTypes.h
│           └── SensorXYZ.h
├── Arduino_BHY2Host
│   ├── examples
│   │   ├── Accelerometer
│   │   │   └── Accelerometer.ino
│   │   ├── BSEC
│   │   │   └── BSEC.ino
│   │   ├── Nicla_IoT_Bridge
│   │   │   ├── arduino_secrets.h
│   │   │   ├── Nicla_IoT_Bridge.ino
│   │   │   └── thingProperties.h
│   │   ├── Orientation
│   │   │   └── Orientation.ino
│   │   ├── Passthrough
│   │   │   └── Passthrough.ino
│   │   ├── Portenta_BLE_Bridge
│   │   │   ├── arduino_secrets.h
│   │   │   ├── Portenta_BLE_Bridge.ino
│   │   │   └── thingProperties.h
│   │   └── Temperature
│   │       └── Temperature.ino
│   ├── library.properties
│   ├── LICENSE.txt
│   ├── README.md
│   └── src
│       ├── Arduino_BHY2Host.cpp
│       ├── Arduino_BHY2Host.h
│       ├── BLEHandler.cpp
│       ├── BLEHandler.h
│       ├── DFUTypes.h
│       ├── EslovHandler.cpp
│       ├── EslovHandler.h
│       └── sensors
│           ├── DataParser.cpp
│           ├── DataParser.h
│           ├── SensorActivity.h
│           ├── SensorBSEC.h
│           ├── SensorClass.cpp
│           ├── SensorClass.h
│           ├── Sensor.h
│           ├── SensorID.h
│           ├── SensorManager.cpp
│           ├── SensorManager.h
│           ├── SensorOrientation.h
│           ├── SensorQuaternion.h
│           ├── SensorTypes.h
│           └── SensorXYZ.h
├── Arduino_BMI270_BMM150
│   ├── CHANGELOG
│   ├── examples
│   │   ├── Interrupts_subclassing
│   │   │   └── Interrupts_subclassing.ino
│   │   ├── SimpleAccelerometer
│   │   │   └── SimpleAccelerometer.ino
│   │   ├── SimpleGyroscope
│   │   │   └── SimpleGyroscope.ino
│   │   └── SimpleMagnetometer
│   │       └── SimpleMagnetometer.ino
│   ├── keywords.txt
│   ├── library.properties
│   ├── README.adoc
│   └── src
│       ├── Arduino_BMI270_BMM150.h
│       ├── BMI270.cpp
│       ├── BoschSensorClass.h
│       └── utilities
│           ├── BMI270-Sensor-API
│           │   ├── bmi270.c
│           │   ├── bmi270_context.c
│           │   ├── bmi270_context.h
│           │   ├── bmi270.h
│           │   ├── bmi270_legacy.c
│           │   ├── bmi270_legacy.h
│           │   ├── bmi270_maximum_fifo.c
│           │   ├── bmi270_maximum_fifo.h
│           │   ├── bmi2.c
│           │   ├── bmi2_defs.h
│           │   ├── bmi2.h
│           │   ├── bmi2_ois.c
│           │   ├── bmi2_ois.h
│           │   ├── LICENSE
│           │   ├── OIS_README.md
│           │   └── README.md
│           └── BMM150-Sensor-API
│               ├── bmm150.c
│               ├── bmm150_defs.h
│               ├── bmm150.h
│               ├── Interrupt_settings.md
│               ├── LICENSE
│               └── README.md
├── Arduino_BQ24195
│   ├── CHANGELOG
│   ├── examples
│   │   ├── BatteryCharger
│   │   │   └── BatteryCharger.ino
│   │   ├── BatteryChargerInterrupt
│   │   │   └── BatteryChargerInterrupt.ino
│   │   ├── PMICBoostMode
│   │   │   └── PMICBoostMode.ino
│   │   └── PMICFaultCheck
│   │       └── PMICFaultCheck.ino
│   ├── keywords.txt
│   ├── library.properties
│   ├── README.adoc
│   └── src
│       ├── Arduino_PMIC.h
│       ├── BQ24195.cpp
│       └── BQ24195.h
├── Arduino_Braccio_plusplus
│   ├── examples
│   │   ├── Braccio_Record_and_Replay
│   │   │   ├── AppState.cpp
│   │   │   ├── AppState.h
│   │   │   ├── Braccio_Record_and_Replay.ino
│   │   │   └── stop_sign.c
│   │   ├── Controlling_Manually_Braccio
│   │   │   ├── AppState.cpp
│   │   │   ├── AppState.h
│   │   │   └── Controlling_Manually_Braccio.ino
│   │   ├── Platform_Tutorials
│   │   │   ├── lessons
│   │   │   │   ├── 01-programming-the-braccio-display
│   │   │   │   │   ├── 01_creating_a_button
│   │   │   │   │   │   ├── 01_creating_a_button.ino
│   │   │   │   │   │   └── sketch.json
│   │   │   │   │   ├── 02_designing_the_button
│   │   │   │   │   │   ├── 02_designing_the_button.ino
│   │   │   │   │   │   ├── btn_style.ino.NANO_RP2040_CONNECT.bin
│   │   │   │   │   │   └── sketch.json
│   │   │   │   │   ├── 03_creating_a_menu
│   │   │   │   │   │   └── 03_creating_a_menu.ino
│   │   │   │   │   ├── 04_testing_it_out
│   │   │   │   │   │   └── 04_testing_it_out.ino
│   │   │   │   │   └── 05_display_challenge
│   │   │   │   │       └── 05_display_challenge.ino
│   │   │   │   ├── 02-navigatting-the-display-menu
│   │   │   │   │   ├── 01_playing_with_the_Joystick
│   │   │   │   │   │   └── 01_playing_with_the_Joystick.ino
│   │   │   │   │   ├── 02_handling_events_in_the_menu
│   │   │   │   │   │   └── 02_handling_events_in_the_menu.ino
│   │   │   │   │   ├── 03_navigate_challenge_I
│   │   │   │   │   │   └── 03_navigate_challenge_I.ino
│   │   │   │   │   └── 04_navigate_challenge_II
│   │   │   │   │       └── 04_navigate_challenge_II.ino
│   │   │   │   ├── 03-playing-with-the-motors
│   │   │   │   │   ├── 01_playing_with_the_motors
│   │   │   │   │   │   └── 01_playing_with_the_motors.ino
│   │   │   │   │   ├── 02_selecting_the_motor_with_the_enter_button
│   │   │   │   │   │   └── 02_selecting_the_motor_with_the_enter_button.ino
│   │   │   │   │   ├── 03_moving_the_motors_with_the_joystick
│   │   │   │   │   │   └── 03_moving_the_motors_with_the_joystick.ino
│   │   │   │   │   └── 04_servo_motors_challenge
│   │   │   │   │       └── 04_servo_motors_challenge.ino
│   │   │   │   └── 04-integration-of-previous-learnings
│   │   │   │       ├── 01_playing_with_a_joint_angle_gauge
│   │   │   │       │   └── 01_playing_with_a_joint_angle_gauge.ino
│   │   │   │       ├── 02_selecting_the_motor_in_the_LCD_menu
│   │   │   │       │   └── 02_selecting_the_motor_in_the_LCD_menu.ino
│   │   │   │       ├── 03_learnings_challenge_I
│   │   │   │       │   └── 03_learnings_challenge_I.ino
│   │   │   │       └── 04_learnings_challenge_II
│   │   │   │           └── 04_learnings_challenge_II.ino
│   │   │   └── projects
│   │   │       ├── p01-moving-braccio
│   │   │       │   ├── 01_aligning_braccio
│   │   │       │   │   └── 01_aligning_braccio.ino
│   │   │       │   ├── 02_waving_with_Braccio
│   │   │       │   │   └── 02_waving_with_Braccio.ino
│   │   │       │   └── 03_moving_challenge
│   │   │       │       └── 03_moving_challenge.ino
│   │   │       ├── p02-controlling-braccio-manually
│   │   │       │   ├── 01_Controlling_Manually_Braccio
│   │   │       │   │   ├── 01_Controlling_Manually_Braccio.ino
│   │   │       │   │   ├── AppState.cpp
│   │   │       │   │   └── AppState.h
│   │   │       │   └── 02_Manual_Control_Challenge
│   │   │       │       ├── 02_Manual_Control_Challenge.ino
│   │   │       │       ├── AppState.cpp
│   │   │       │       └── AppState.h
│   │   │       └── p03-record-replay-mode
│   │   │           ├── 01_Braccio_Record_and_Replay
│   │   │           │   ├── 01_Braccio_Record_and_Replay.ino
│   │   │           │   ├── AppState.cpp
│   │   │           │   ├── AppState.h
│   │   │           │   └── stop_sign.c
│   │   │           └── 02_Record_Replay_challenge
│   │   │               ├── 02_Record_Replay_challenge.ino
│   │   │               ├── AppState.cpp
│   │   │               ├── AppState.h
│   │   │               └── stop_sign.c
│   │   └── Tools
│   │       ├── Braccio_Basic
│   │       │   └── Braccio_Basic.ino
│   │       ├── Braccio_LearnByDoing
│   │       │   └── Braccio_LearnByDoing.ino
│   │       ├── Factory_Set_ID_Interactive
│   │       │   └── Factory_Set_ID_Interactive.ino
│   │       ├── Factory_Set_Initial_Servo_Position
│   │       │   └── Factory_Set_Initial_Servo_Position.ino
│   │       ├── LCD_Custom_Menu
│   │       │   └── LCD_Custom_Menu.ino
│   │       ├── LCD_Menu_Joystick
│   │       │   └── LCD_Menu_Joystick.ino
│   │       ├── LCD_Motors
│   │       │   └── LCD_Motors.ino
│   │       ├── Test_Inputs
│   │       │   └── Test_Inputs.ino
│   │       ├── Test_Motor_Angular_Control
│   │       │   └── Test_Motor_Angular_Control.ino
│   │       └── Test_Motor_Communication
│   │           └── Test_Motor_Communication.ino
│   ├── extras
│   │   └── CMakeLists.txt
│   ├── library.properties
│   ├── LICENSE
│   ├── README.md
│   └── src
│       ├── Braccio++.cpp
│       ├── Braccio++.h
│       ├── cortex-m0plus
│       │   └── liblvgl.a
│       ├── gif.c
│       ├── lib
│       │   ├── display
│       │   │   ├── Backlight.cpp
│       │   │   └── Backlight.h
│       │   ├── ioexpander
│       │   │   ├── I2Cdev.cpp
│       │   │   ├── I2Cdev.h
│       │   │   ├── TCA6424A.cpp
│       │   │   └── TCA6424A.h
│       │   ├── lvgl
│       │   │   ├── lvgl.h
│       │   │   └── src
│       │   │       ├── core
│       │   │       │   ├── lv_disp.h
│       │   │       │   ├── lv_event.h
│       │   │       │   ├── lv_group.h
│       │   │       │   ├── lv_indev.h
│       │   │       │   ├── lv_indev_scroll.h
│       │   │       │   ├── lv_obj_class.h
│       │   │       │   ├── lv_obj_draw.h
│       │   │       │   ├── lv_obj.h
│       │   │       │   ├── lv_obj_pos.h
│       │   │       │   ├── lv_obj_scroll.h
│       │   │       │   ├── lv_obj_style_gen.h
│       │   │       │   ├── lv_obj_style.h
│       │   │       │   ├── lv_obj_tree.h
│       │   │       │   ├── lv_refr.h
│       │   │       │   └── lv_theme.h
│       │   │       ├── draw
│       │   │       │   ├── arm2d
│       │   │       │   │   └── lv_gpu_arm2d.h
│       │   │       │   ├── lv_draw_arc.h
│       │   │       │   ├── lv_draw.h
│       │   │       │   ├── lv_draw_img.h
│       │   │       │   ├── lv_draw_label.h
│       │   │       │   ├── lv_draw_line.h
│       │   │       │   ├── lv_draw_mask.h
│       │   │       │   ├── lv_draw_rect.h
│       │   │       │   ├── lv_draw_triangle.h
│       │   │       │   ├── lv_img_buf.h
│       │   │       │   ├── lv_img_cache.h
│       │   │       │   ├── lv_img_decoder.h
│       │   │       │   ├── nxp_pxp
│       │   │       │   │   ├── lv_gpu_nxp_pxp.h
│       │   │       │   │   └── lv_gpu_nxp_pxp_osa.h
│       │   │       │   ├── nxp_vglite
│       │   │       │   │   └── lv_gpu_nxp_vglite.h
│       │   │       │   ├── sdl
│       │   │       │   │   ├── lv_draw_sdl_composite.h
│       │   │       │   │   ├── lv_draw_sdl.h
│       │   │       │   │   ├── lv_draw_sdl_img.h
│       │   │       │   │   ├── lv_draw_sdl_mask.h
│       │   │       │   │   ├── lv_draw_sdl_priv.h
│       │   │       │   │   ├── lv_draw_sdl_rect.h
│       │   │       │   │   ├── lv_draw_sdl_stack_blur.h
│       │   │       │   │   ├── lv_draw_sdl_texture_cache.h
│       │   │       │   │   └── lv_draw_sdl_utils.h
│       │   │       │   ├── stm32_dma2d
│       │   │       │   │   └── lv_gpu_stm32_dma2d.h
│       │   │       │   └── sw
│       │   │       │       ├── lv_draw_sw_blend.h
│       │   │       │       ├── lv_draw_sw_dither.h
│       │   │       │       ├── lv_draw_sw_gradient.h
│       │   │       │       └── lv_draw_sw.h
│       │   │       ├── extra
│       │   │       │   ├── layouts
│       │   │       │   │   ├── flex
│       │   │       │   │   │   └── lv_flex.h
│       │   │       │   │   ├── grid
│       │   │       │   │   │   └── lv_grid.h
│       │   │       │   │   └── lv_layouts.h
│       │   │       │   ├── libs
│       │   │       │   │   ├── bmp
│       │   │       │   │   │   └── lv_bmp.h
│       │   │       │   │   ├── ffmpeg
│       │   │       │   │   │   └── lv_ffmpeg.h
│       │   │       │   │   ├── freetype
│       │   │       │   │   │   └── lv_freetype.h
│       │   │       │   │   ├── fsdrv
│       │   │       │   │   │   └── lv_fsdrv.h
│       │   │       │   │   ├── gif
│       │   │       │   │   │   ├── gifdec.h
│       │   │       │   │   │   └── lv_gif.h
│       │   │       │   │   ├── lv_libs.h
│       │   │       │   │   ├── png
│       │   │       │   │   │   ├── lodepng.h
│       │   │       │   │   │   └── lv_png.h
│       │   │       │   │   ├── qrcode
│       │   │       │   │   │   ├── lv_qrcode.h
│       │   │       │   │   │   └── qrcodegen.h
│       │   │       │   │   ├── rlottie
│       │   │       │   │   │   └── lv_rlottie.h
│       │   │       │   │   └── sjpg
│       │   │       │   │       ├── lv_sjpg.h
│       │   │       │   │       ├── tjpgdcnf.h
│       │   │       │   │       └── tjpgd.h
│       │   │       │   ├── lv_extra.h
│       │   │       │   ├── others
│       │   │       │   │   ├── fragment
│       │   │       │   │   │   └── lv_fragment.h
│       │   │       │   │   ├── gridnav
│       │   │       │   │   │   └── lv_gridnav.h
│       │   │       │   │   ├── imgfont
│       │   │       │   │   │   └── lv_imgfont.h
│       │   │       │   │   ├── lv_others.h
│       │   │       │   │   ├── monkey
│       │   │       │   │   │   └── lv_monkey.h
│       │   │       │   │   └── snapshot
│       │   │       │   │       └── lv_snapshot.h
│       │   │       │   ├── themes
│       │   │       │   │   ├── basic
│       │   │       │   │   │   └── lv_theme_basic.h
│       │   │       │   │   ├── default
│       │   │       │   │   │   └── lv_theme_default.h
│       │   │       │   │   ├── lv_themes.h
│       │   │       │   │   └── mono
│       │   │       │   │       └── lv_theme_mono.h
│       │   │       │   └── widgets
│       │   │       │       ├── animimg
│       │   │       │       │   └── lv_animimg.h
│       │   │       │       ├── calendar
│       │   │       │       │   ├── lv_calendar.h
│       │   │       │       │   ├── lv_calendar_header_arrow.h
│       │   │       │       │   └── lv_calendar_header_dropdown.h
│       │   │       │       ├── chart
│       │   │       │       │   └── lv_chart.h
│       │   │       │       ├── colorwheel
│       │   │       │       │   └── lv_colorwheel.h
│       │   │       │       ├── imgbtn
│       │   │       │       │   └── lv_imgbtn.h
│       │   │       │       ├── keyboard
│       │   │       │       │   └── lv_keyboard.h
│       │   │       │       ├── led
│       │   │       │       │   └── lv_led.h
│       │   │       │       ├── list
│       │   │       │       │   └── lv_list.h
│       │   │       │       ├── lv_widgets.h
│       │   │       │       ├── menu
│       │   │       │       │   └── lv_menu.h
│       │   │       │       ├── meter
│       │   │       │       │   └── lv_meter.h
│       │   │       │       ├── msgbox
│       │   │       │       │   └── lv_msgbox.h
│       │   │       │       ├── span
│       │   │       │       │   └── lv_span.h
│       │   │       │       ├── spinbox
│       │   │       │       │   └── lv_spinbox.h
│       │   │       │       ├── spinner
│       │   │       │       │   └── lv_spinner.h
│       │   │       │       ├── tabview
│       │   │       │       │   └── lv_tabview.h
│       │   │       │       ├── tileview
│       │   │       │       │   └── lv_tileview.h
│       │   │       │       └── win
│       │   │       │           └── lv_win.h
│       │   │       ├── font
│       │   │       │   ├── lv_font_fmt_txt.h
│       │   │       │   ├── lv_font.h
│       │   │       │   ├── lv_font_loader.h
│       │   │       │   └── lv_symbol_def.h
│       │   │       ├── hal
│       │   │       │   ├── lv_hal_disp.h
│       │   │       │   ├── lv_hal.h
│       │   │       │   ├── lv_hal_indev.h
│       │   │       │   └── lv_hal_tick.h
│       │   │       ├── lv_api_map.h
│       │   │       ├── lv_conf_internal.h
│       │   │       ├── lv_conf_kconfig.h
│       │   │       ├── lvgl.h
│       │   │       ├── misc
│       │   │       │   ├── lv_anim.h
│       │   │       │   ├── lv_anim_timeline.h
│       │   │       │   ├── lv_area.h
│       │   │       │   ├── lv_assert.h
│       │   │       │   ├── lv_async.h
│       │   │       │   ├── lv_bidi.h
│       │   │       │   ├── lv_color.h
│       │   │       │   ├── lv_fs.h
│       │   │       │   ├── lv_gc.h
│       │   │       │   ├── lv_ll.h
│       │   │       │   ├── lv_log.h
│       │   │       │   ├── lv_lru.h
│       │   │       │   ├── lv_math.h
│       │   │       │   ├── lv_mem.h
│       │   │       │   ├── lv_printf.h
│       │   │       │   ├── lv_style_gen.h
│       │   │       │   ├── lv_style.h
│       │   │       │   ├── lv_templ.h
│       │   │       │   ├── lv_timer.h
│       │   │       │   ├── lv_tlsf.h
│       │   │       │   ├── lv_txt_ap.h
│       │   │       │   ├── lv_txt.h
│       │   │       │   ├── lv_types.h
│       │   │       │   └── lv_utils.h
│       │   │       └── widgets
│       │   │           ├── lv_arc.h
│       │   │           ├── lv_bar.h
│       │   │           ├── lv_btn.h
│       │   │           ├── lv_btnmatrix.h
│       │   │           ├── lv_canvas.h
│       │   │           ├── lv_checkbox.h
│       │   │           ├── lv_dropdown.h
│       │   │           ├── lv_img.h
│       │   │           ├── lv_label.h
│       │   │           ├── lv_line.h
│       │   │           ├── lv_objx_templ.h
│       │   │           ├── lv_roller.h
│       │   │           ├── lv_slider.h
│       │   │           ├── lv_switch.h
│       │   │           ├── lv_table.h
│       │   │           └── lv_textarea.h
│       │   ├── motors
│       │   │   ├── RS485.cpp
│       │   │   ├── RS485.h
│       │   │   ├── SmartServoConst.h
│       │   │   ├── SmartServo.cpp
│       │   │   └── SmartServo.h
│       │   ├── powerdelivery
│       │   │   ├── FUSB302_UFP.cpp
│       │   │   ├── FUSB302_UFP.h
│       │   │   ├── PD_UFP.cpp
│       │   │   ├── PD_UFP.h
│       │   │   ├── PD_UFP_Protocol.c
│       │   │   └── PD_UFP_Protocol.h
│       │   └── TFT_eSPI
│       │       ├── keywords.txt
│       │       ├── library.json
│       │       ├── library.properties
│       │       ├── license.txt
│       │       ├── Processors
│       │       │   ├── TFT_eSPI_Generic.cx
│       │       │   ├── TFT_eSPI_Generic.h
│       │       │   ├── TFT_eSPI_RP2040.cx
│       │       │   └── TFT_eSPI_RP2040.h
│       │       ├── README.md
│       │       ├── README.txt
│       │       ├── TFT_Drivers
│       │       │   ├── ILI9341_Defines.h
│       │       │   ├── ILI9341_Init.h
│       │       │   ├── ILI9341_Rotation.h
│       │       │   ├── ST7789_2_Defines.h
│       │       │   ├── ST7789_2_Init.h
│       │       │   ├── ST7789_2_Rotation.h
│       │       │   ├── ST7789_Defines.h
│       │       │   ├── ST7789_Init.h
│       │       │   ├── ST7789_Rotation.h
│       │       │   ├── ST7796_Defines.h
│       │       │   ├── ST7796_Init.h
│       │       │   └── ST7796_Rotation.h
│       │       ├── TFT_eSPI.cpp
│       │       ├── TFT_eSPI.h
│       │       ├── User_Setup.h
│       │       ├── User_Setups
│       │       │   └── Setup24_ST7789.h
│       │       └── User_Setup_Select.h
│       └── lv_conf.h
├── Arduino_Cloud_Provider_Examples
│   ├── examples
│   │   ├── AWS IoT
│   │   │   ├── AWS_IoT_GSM
│   │   │   │   ├── arduino_secrets.h
│   │   │   │   └── AWS_IoT_GSM.ino
│   │   │   ├── AWS_IoT_NB
│   │   │   │   ├── arduino_secrets.h
│   │   │   │   └── AWS_IoT_NB.ino
│   │   │   └── AWS_IoT_WiFi
│   │   │       ├── arduino_secrets.h
│   │   │       └── AWS_IoT_WiFi.ino
│   │   ├── Azure IoT Hub
│   │   │   ├── Azure_IoT_Hub_GSM
│   │   │   │   ├── arduino_secrets.h
│   │   │   │   └── Azure_IoT_Hub_GSM.ino
│   │   │   ├── Azure_IoT_Hub_NB
│   │   │   │   ├── arduino_secrets.h
│   │   │   │   └── Azure_IoT_Hub_NB.ino
│   │   │   └── Azure_IoT_Hub_WiFi
│   │   │       ├── arduino_secrets.h
│   │   │       └── Azure_IoT_Hub_WiFi.ino
│   │   └── Google Cloud Platform IoT Core
│   │       ├── GCP_IoT_Core_GSM
│   │       │   ├── arduino_secrets.h
│   │       │   └── GCP_IoT_Core_GSM.ino
│   │       ├── GCP_IoT_Core_NB
│   │       │   ├── arduino_secrets.h
│   │       │   └── GCP_IoT_Core_NB.ino
│   │       └── GCP_IoT_Core_WiFi
│   │           ├── arduino_secrets.h
│   │           └── GCP_IoT_Core_WiFi.ino
│   ├── library.properties
│   ├── README.adoc
│   └── src
│       └── ArduinoCloudProviderExamples.h
├── Arduino_CMSIS-DSP
│   ├── create_lib
│   ├── library.properties
│   └── src
│       ├── arm_common_tables.h
│       ├── arm_const_structs.h
│       ├── arm_helium_utils.h
│       ├── arm_math.h
│       ├── arm_mve_tables.h
│       ├── arm_sorting.h
│       ├── arm_vec_fft.h
│       ├── arm_vec_filtering.h
│       ├── arm_vec_math.h
│       └── Source
│           ├── BasicMathFunctions
│           │   ├── arm_abs_f32.c
│           │   ├── arm_abs_q15.c
│           │   ├── arm_abs_q31.c
│           │   ├── arm_abs_q7.c
│           │   ├── arm_add_f32.c
│           │   ├── arm_add_q15.c
│           │   ├── arm_add_q31.c
│           │   ├── arm_add_q7.c
│           │   ├── arm_and_u16.c
│           │   ├── arm_and_u32.c
│           │   ├── arm_and_u8.c
│           │   ├── arm_dot_prod_f32.c
│           │   ├── arm_dot_prod_q15.c
│           │   ├── arm_dot_prod_q31.c
│           │   ├── arm_dot_prod_q7.c
│           │   ├── arm_mult_f32.c
│           │   ├── arm_mult_q15.c
│           │   ├── arm_mult_q31.c
│           │   ├── arm_mult_q7.c
│           │   ├── arm_negate_f32.c
│           │   ├── arm_negate_q15.c
│           │   ├── arm_negate_q31.c
│           │   ├── arm_negate_q7.c
│           │   ├── arm_not_u16.c
│           │   ├── arm_not_u32.c
│           │   ├── arm_not_u8.c
│           │   ├── arm_offset_f32.c
│           │   ├── arm_offset_q15.c
│           │   ├── arm_offset_q31.c
│           │   ├── arm_offset_q7.c
│           │   ├── arm_or_u16.c
│           │   ├── arm_or_u32.c
│           │   ├── arm_or_u8.c
│           │   ├── arm_scale_f32.c
│           │   ├── arm_scale_q15.c
│           │   ├── arm_scale_q31.c
│           │   ├── arm_scale_q7.c
│           │   ├── arm_shift_q15.c
│           │   ├── arm_shift_q31.c
│           │   ├── arm_shift_q7.c
│           │   ├── arm_sub_f32.c
│           │   ├── arm_sub_q15.c
│           │   ├── arm_sub_q31.c
│           │   ├── arm_sub_q7.c
│           │   ├── arm_xor_u16.c
│           │   ├── arm_xor_u32.c
│           │   ├── arm_xor_u8.c
│           │   └── CMakeLists.txt
│           ├── BayesFunctions
│           │   ├── arm_gaussian_naive_bayes_predict_f32.c
│           │   └── CMakeLists.txt
│           ├── CMakeLists.txt
│           ├── CommonTables
│           │   ├── arm_common_tables.c
│           │   ├── arm_const_structs.c
│           │   ├── arm_mve_tables.c
│           │   └── CMakeLists.txt
│           ├── ComplexMathFunctions
│           │   ├── arm_cmplx_conj_f32.c
│           │   ├── arm_cmplx_conj_q15.c
│           │   ├── arm_cmplx_conj_q31.c
│           │   ├── arm_cmplx_dot_prod_f32.c
│           │   ├── arm_cmplx_dot_prod_q15.c
│           │   ├── arm_cmplx_dot_prod_q31.c
│           │   ├── arm_cmplx_mag_f32.c
│           │   ├── arm_cmplx_mag_q15.c
│           │   ├── arm_cmplx_mag_q31.c
│           │   ├── arm_cmplx_mag_squared_f32.c
│           │   ├── arm_cmplx_mag_squared_q15.c
│           │   ├── arm_cmplx_mag_squared_q31.c
│           │   ├── arm_cmplx_mult_cmplx_f32.c
│           │   ├── arm_cmplx_mult_cmplx_q15.c
│           │   ├── arm_cmplx_mult_cmplx_q31.c
│           │   ├── arm_cmplx_mult_real_f32.c
│           │   ├── arm_cmplx_mult_real_q15.c
│           │   ├── arm_cmplx_mult_real_q31.c
│           │   └── CMakeLists.txt
│           ├── configDsp.cmake
│           ├── ControllerFunctions
│           │   ├── arm_pid_init_f32.c
│           │   ├── arm_pid_init_q15.c
│           │   ├── arm_pid_init_q31.c
│           │   ├── arm_pid_reset_f32.c
│           │   ├── arm_pid_reset_q15.c
│           │   ├── arm_pid_reset_q31.c
│           │   ├── arm_sin_cos_f32.c
│           │   ├── arm_sin_cos_q31.c
│           │   └── CMakeLists.txt
│           ├── DistanceFunctions
│           │   ├── arm_boolean_distance.c
│           │   ├── arm_boolean_distance_template.h
│           │   ├── arm_braycurtis_distance_f32.c
│           │   ├── arm_canberra_distance_f32.c
│           │   ├── arm_chebyshev_distance_f32.c
│           │   ├── arm_cityblock_distance_f32.c
│           │   ├── arm_correlation_distance_f32.c
│           │   ├── arm_cosine_distance_f32.c
│           │   ├── arm_dice_distance.c
│           │   ├── arm_euclidean_distance_f32.c
│           │   ├── arm_hamming_distance.c
│           │   ├── arm_jaccard_distance.c
│           │   ├── arm_jensenshannon_distance_f32.c
│           │   ├── arm_kulsinski_distance.c
│           │   ├── arm_minkowski_distance_f32.c
│           │   ├── arm_rogerstanimoto_distance.c
│           │   ├── arm_russellrao_distance.c
│           │   ├── arm_sokalmichener_distance.c
│           │   ├── arm_sokalsneath_distance.c
│           │   ├── arm_yule_distance.c
│           │   └── CMakeLists.txt
│           ├── FastMathFunctions
│           │   ├── arm_cos_f32.c
│           │   ├── arm_cos_q15.c
│           │   ├── arm_cos_q31.c
│           │   ├── arm_sin_f32.c
│           │   ├── arm_sin_q15.c
│           │   ├── arm_sin_q31.c
│           │   ├── arm_sqrt_q15.c
│           │   ├── arm_sqrt_q31.c
│           │   ├── arm_vexp_f32.c
│           │   ├── arm_vlog_f32.c
│           │   └── CMakeLists.txt
│           ├── fft.cmake
│           ├── FilteringFunctions
│           │   ├── arm_biquad_cascade_df1_32x64_init_q31.c
│           │   ├── arm_biquad_cascade_df1_32x64_q31.c
│           │   ├── arm_biquad_cascade_df1_f32.c
│           │   ├── arm_biquad_cascade_df1_fast_q15.c
│           │   ├── arm_biquad_cascade_df1_fast_q31.c
│           │   ├── arm_biquad_cascade_df1_init_f32.c
│           │   ├── arm_biquad_cascade_df1_init_q15.c
│           │   ├── arm_biquad_cascade_df1_init_q31.c
│           │   ├── arm_biquad_cascade_df1_q15.c
│           │   ├── arm_biquad_cascade_df1_q31.c
│           │   ├── arm_biquad_cascade_df2T_f32.c
│           │   ├── arm_biquad_cascade_df2T_f64.c
│           │   ├── arm_biquad_cascade_df2T_init_f32.c
│           │   ├── arm_biquad_cascade_df2T_init_f64.c
│           │   ├── arm_biquad_cascade_stereo_df2T_f32.c
│           │   ├── arm_biquad_cascade_stereo_df2T_init_f32.c
│           │   ├── arm_conv_f32.c
│           │   ├── arm_conv_fast_opt_q15.c
│           │   ├── arm_conv_fast_q15.c
│           │   ├── arm_conv_fast_q31.c
│           │   ├── arm_conv_opt_q15.c
│           │   ├── arm_conv_opt_q7.c
│           │   ├── arm_conv_partial_f32.c
│           │   ├── arm_conv_partial_fast_opt_q15.c
│           │   ├── arm_conv_partial_fast_q15.c
│           │   ├── arm_conv_partial_fast_q31.c
│           │   ├── arm_conv_partial_opt_q15.c
│           │   ├── arm_conv_partial_opt_q7.c
│           │   ├── arm_conv_partial_q15.c
│           │   ├── arm_conv_partial_q31.c
│           │   ├── arm_conv_partial_q7.c
│           │   ├── arm_conv_q15.c
│           │   ├── arm_conv_q31.c
│           │   ├── arm_conv_q7.c
│           │   ├── arm_correlate_f32.c
│           │   ├── arm_correlate_fast_opt_q15.c
│           │   ├── arm_correlate_fast_q15.c
│           │   ├── arm_correlate_fast_q31.c
│           │   ├── arm_correlate_opt_q15.c
│           │   ├── arm_correlate_opt_q7.c
│           │   ├── arm_correlate_q15.c
│           │   ├── arm_correlate_q31.c
│           │   ├── arm_correlate_q7.c
│           │   ├── arm_fir_decimate_f32.c
│           │   ├── arm_fir_decimate_fast_q15.c
│           │   ├── arm_fir_decimate_fast_q31.c
│           │   ├── arm_fir_decimate_init_f32.c
│           │   ├── arm_fir_decimate_init_q15.c
│           │   ├── arm_fir_decimate_init_q31.c
│           │   ├── arm_fir_decimate_q15.c
│           │   ├── arm_fir_decimate_q31.c
│           │   ├── arm_fir_f32.c
│           │   ├── arm_fir_fast_q15.c
│           │   ├── arm_fir_fast_q31.c
│           │   ├── arm_fir_init_f32.c
│           │   ├── arm_fir_init_q15.c
│           │   ├── arm_fir_init_q31.c
│           │   ├── arm_fir_init_q7.c
│           │   ├── arm_fir_interpolate_f32.c
│           │   ├── arm_fir_interpolate_init_f32.c
│           │   ├── arm_fir_interpolate_init_q15.c
│           │   ├── arm_fir_interpolate_init_q31.c
│           │   ├── arm_fir_interpolate_q15.c
│           │   ├── arm_fir_interpolate_q31.c
│           │   ├── arm_fir_lattice_f32.c
│           │   ├── arm_fir_lattice_init_f32.c
│           │   ├── arm_fir_lattice_init_q15.c
│           │   ├── arm_fir_lattice_init_q31.c
│           │   ├── arm_fir_lattice_q15.c
│           │   ├── arm_fir_lattice_q31.c
│           │   ├── arm_fir_q15.c
│           │   ├── arm_fir_q31.c
│           │   ├── arm_fir_q7.c
│           │   ├── arm_fir_sparse_f32.c
│           │   ├── arm_fir_sparse_init_f32.c
│           │   ├── arm_fir_sparse_init_q15.c
│           │   ├── arm_fir_sparse_init_q31.c
│           │   ├── arm_fir_sparse_init_q7.c
│           │   ├── arm_fir_sparse_q15.c
│           │   ├── arm_fir_sparse_q31.c
│           │   ├── arm_fir_sparse_q7.c
│           │   ├── arm_iir_lattice_f32.c
│           │   ├── arm_iir_lattice_init_f32.c
│           │   ├── arm_iir_lattice_init_q15.c
│           │   ├── arm_iir_lattice_init_q31.c
│           │   ├── arm_iir_lattice_q15.c
│           │   ├── arm_iir_lattice_q31.c
│           │   ├── arm_lms_f32.c
│           │   ├── arm_lms_init_f32.c
│           │   ├── arm_lms_init_q15.c
│           │   ├── arm_lms_init_q31.c
│           │   ├── arm_lms_norm_f32.c
│           │   ├── arm_lms_norm_init_f32.c
│           │   ├── arm_lms_norm_init_q15.c
│           │   ├── arm_lms_norm_init_q31.c
│           │   ├── arm_lms_norm_q15.c
│           │   ├── arm_lms_norm_q31.c
│           │   ├── arm_lms_q15.c
│           │   ├── arm_lms_q31.c
│           │   └── CMakeLists.txt
│           ├── interpol.cmake
│           ├── MatrixFunctions
│           │   ├── arm_mat_add_f32.c
│           │   ├── arm_mat_add_q15.c
│           │   ├── arm_mat_add_q31.c
│           │   ├── arm_mat_cmplx_mult_f32.c
│           │   ├── arm_mat_cmplx_mult_q15.c
│           │   ├── arm_mat_cmplx_mult_q31.c
│           │   ├── arm_mat_init_f32.c
│           │   ├── arm_mat_init_q15.c
│           │   ├── arm_mat_init_q31.c
│           │   ├── arm_mat_inverse_f32.c
│           │   ├── arm_mat_inverse_f64.c
│           │   ├── arm_mat_mult_f32.c
│           │   ├── arm_mat_mult_fast_q15.c
│           │   ├── arm_mat_mult_fast_q31.c
│           │   ├── arm_mat_mult_q15.c
│           │   ├── arm_mat_mult_q31.c
│           │   ├── arm_mat_scale_f32.c
│           │   ├── arm_mat_scale_q15.c
│           │   ├── arm_mat_scale_q31.c
│           │   ├── arm_mat_sub_f32.c
│           │   ├── arm_mat_sub_q15.c
│           │   ├── arm_mat_sub_q31.c
│           │   ├── arm_mat_trans_f32.c
│           │   ├── arm_mat_trans_q15.c
│           │   ├── arm_mat_trans_q31.c
│           │   └── CMakeLists.txt
│           ├── StatisticsFunctions
│           │   ├── arm_entropy_f32.c
│           │   ├── arm_entropy_f64.c
│           │   ├── arm_kullback_leibler_f32.c
│           │   ├── arm_kullback_leibler_f64.c
│           │   ├── arm_logsumexp_dot_prod_f32.c
│           │   ├── arm_logsumexp_f32.c
│           │   ├── arm_max_f32.c
│           │   ├── arm_max_no_idx_f32.c
│           │   ├── arm_max_q15.c
│           │   ├── arm_max_q31.c
│           │   ├── arm_max_q7.c
│           │   ├── arm_mean_f32.c
│           │   ├── arm_mean_q15.c
│           │   ├── arm_mean_q31.c
│           │   ├── arm_mean_q7.c
│           │   ├── arm_min_f32.c
│           │   ├── arm_min_q15.c
│           │   ├── arm_min_q31.c
│           │   ├── arm_min_q7.c
│           │   ├── arm_power_f32.c
│           │   ├── arm_power_q15.c
│           │   ├── arm_power_q31.c
│           │   ├── arm_power_q7.c
│           │   ├── arm_rms_f32.c
│           │   ├── arm_rms_q15.c
│           │   ├── arm_rms_q31.c
│           │   ├── arm_std_f32.c
│           │   ├── arm_std_q15.c
│           │   ├── arm_std_q31.c
│           │   ├── arm_var_f32.c
│           │   ├── arm_var_q15.c
│           │   ├── arm_var_q31.c
│           │   └── CMakeLists.txt
│           ├── SupportFunctions
│           │   ├── arm_barycenter_f32.c
│           │   ├── arm_bitonic_sort_f32.c
│           │   ├── arm_bubble_sort_f32.c
│           │   ├── arm_copy_f32.c
│           │   ├── arm_copy_q15.c
│           │   ├── arm_copy_q31.c
│           │   ├── arm_copy_q7.c
│           │   ├── arm_fill_f32.c
│           │   ├── arm_fill_q15.c
│           │   ├── arm_fill_q31.c
│           │   ├── arm_fill_q7.c
│           │   ├── arm_float_to_q15.c
│           │   ├── arm_float_to_q31.c
│           │   ├── arm_float_to_q7.c
│           │   ├── arm_heap_sort_f32.c
│           │   ├── arm_insertion_sort_f32.c
│           │   ├── arm_merge_sort_f32.c
│           │   ├── arm_merge_sort_init_f32.c
│           │   ├── arm_q15_to_float.c
│           │   ├── arm_q15_to_q31.c
│           │   ├── arm_q15_to_q7.c
│           │   ├── arm_q31_to_float.c
│           │   ├── arm_q31_to_q15.c
│           │   ├── arm_q31_to_q7.c
│           │   ├── arm_q7_to_float.c
│           │   ├── arm_q7_to_q15.c
│           │   ├── arm_q7_to_q31.c
│           │   ├── arm_quick_sort_f32.c
│           │   ├── arm_selection_sort_f32.c
│           │   ├── arm_sort_f32.c
│           │   ├── arm_sort_init_f32.c
│           │   ├── arm_spline_interp_f32.c
│           │   ├── arm_spline_interp_init_f32.c
│           │   ├── arm_weighted_sum_f32.c
│           │   └── CMakeLists.txt
│           ├── SVMFunctions
│           │   ├── arm_svm_linear_init_f32.c
│           │   ├── arm_svm_linear_predict_f32.c
│           │   ├── arm_svm_polynomial_init_f32.c
│           │   ├── arm_svm_polynomial_predict_f32.c
│           │   ├── arm_svm_rbf_init_f32.c
│           │   ├── arm_svm_rbf_predict_f32.c
│           │   ├── arm_svm_sigmoid_init_f32.c
│           │   ├── arm_svm_sigmoid_predict_f32.c
│           │   └── CMakeLists.txt
│           └── TransformFunctions
│               ├── arm_bitreversal2.S
│               ├── arm_bitreversal.c
│               ├── arm_cfft_f32.c
│               ├── arm_cfft_f64.c
│               ├── arm_cfft_init_f32.c
│               ├── arm_cfft_init_f64.c
│               ├── arm_cfft_init_q15.c
│               ├── arm_cfft_init_q31.c
│               ├── arm_cfft_q15.c
│               ├── arm_cfft_q31.c
│               ├── arm_cfft_radix2_f32.c
│               ├── arm_cfft_radix2_init_f32.c
│               ├── arm_cfft_radix2_init_q15.c
│               ├── arm_cfft_radix2_init_q31.c
│               ├── arm_cfft_radix2_q15.c
│               ├── arm_cfft_radix2_q31.c
│               ├── arm_cfft_radix4_f32.c
│               ├── arm_cfft_radix4_init_f32.c
│               ├── arm_cfft_radix4_init_q15.c
│               ├── arm_cfft_radix4_init_q31.c
│               ├── arm_cfft_radix4_q15.c
│               ├── arm_cfft_radix4_q31.c
│               ├── arm_cfft_radix8_f32.c
│               ├── arm_dct4_f32.c
│               ├── arm_dct4_init_f32.c
│               ├── arm_dct4_init_q15.c
│               ├── arm_dct4_init_q31.c
│               ├── arm_dct4_q15.c
│               ├── arm_dct4_q31.c
│               ├── arm_rfft_f32.c
│               ├── arm_rfft_fast_f32.c
│               ├── arm_rfft_fast_f64.c
│               ├── arm_rfft_fast_init_f32.c
│               ├── arm_rfft_fast_init_f64.c
│               ├── arm_rfft_init_f32.c
│               ├── arm_rfft_init_q15.c
│               ├── arm_rfft_init_q31.c
│               ├── arm_rfft_q15.c
│               ├── arm_rfft_q31.c
│               └── CMakeLists.txt
├── Arduino_DebugUtils
│   ├── examples
│   │   ├── Arduino_Debug_Advance
│   │   │   └── Arduino_Debug_Advance.ino
│   │   └── Arduino_Debug_Basic
│   │       └── Arduino_Debug_Basic.ino
│   ├── keywords.txt
│   ├── library.properties
│   ├── LICENSE
│   ├── README.md
│   └── src
│       ├── Arduino_DebugUtils.cpp
│       └── Arduino_DebugUtils.h
├── Arduino_Low_Power
│   ├── examples
│   │   ├── AdcWakeup
│   │   │   └── AdcWakeup.ino
│   │   ├── ExternalWakeup
│   │   │   └── ExternalWakeup.ino
│   │   ├── PrimoDeepSleep
│   │   │   └── PrimoDeepSleep.ino
│   │   ├── TianStandby
│   │   │   └── TianStandby.ino
│   │   └── TimedWakeup
│   │       └── TimedWakeup.ino
│   ├── keywords.txt
│   ├── library.properties
│   ├── LICENSE
│   ├── README.md
│   └── src
│       ├── ArduinoLowPower.h
│       ├── nrf52
│       │   └── ArduinoLowPower.cpp
│       └── samd
│           └── ArduinoLowPower.cpp
├── Arduino_LSM6DS3
│   ├── CHANGELOG
│   ├── docs
│   │   ├── api.md
│   │   └── readme.md
│   ├── examples
│   │   ├── SimpleAccelerometer
│   │   │   └── SimpleAccelerometer.ino
│   │   └── SimpleGyroscope
│   │       └── SimpleGyroscope.ino
│   ├── keywords.txt
│   ├── library.properties
│   ├── LICENSE.txt
│   ├── README.adoc
│   └── src
│       ├── Arduino_LSM6DS3.h
│       ├── LSM6DS3.cpp
│       └── LSM6DS3.h
├── Arduino_SigFox_for_MKRFox1200
│   ├── CONTRIBUTING.md
│   ├── docs
│   │   ├── api.md
│   │   └── readme.md
│   ├── examples
│   │   ├── EventTrigger
│   │   │   └── EventTrigger.ino
│   │   ├── FirstConfiguration
│   │   │   └── FirstConfiguration.ino
│   │   ├── SendBoolean
│   │   │   └── SendBoolean.ino
│   │   ├── WeatherMonitor
│   │   │   ├── conversions.h
│   │   │   └── WeatherMonitor.ino
│   │   └── WeatherMonitorStream
│   │       ├── conversions.h
│   │       └── WeatherMonitorStream.ino
│   ├── keywords.txt
│   ├── library.properties
│   ├── README.md
│   └── src
│       ├── SigFox.cpp
│       └── SigFox.h
├── Arduino_Uno_WiFi_Dev_Ed_Library
│   ├── examples
│   │   ├── MqttPub
│   │   │   └── MqttPub.ino
│   │   ├── MqttSub
│   │   │   └── MqttSub.ino
│   │   ├── RestClient
│   │   │   └── RestClient.ino
│   │   ├── RestServer
│   │   │   └── RestServer.ino
│   │   ├── Tools
│   │   │   ├── EspRecovery
│   │   │   │   └── EspRecovery.ino
│   │   │   ├── ReadMacAddress
│   │   │   │   └── ReadMacAddress.ino
│   │   │   └── Wifi2Serial
│   │   │       └── Wifi2Serial.ino
│   │   ├── WebServer
│   │   │   └── WebServer.ino
│   │   └── WebServerBlink
│   │       └── WebServerBlink.ino
│   ├── keywords.txt
│   ├── library.properties
│   ├── README.md
│   └── src
│       ├── lib
│       │   ├── CiaoData.h
│       │   ├── crc16.c
│       │   ├── crc16.h
│       │   ├── espduino.cpp
│       │   ├── espduino.h
│       │   ├── FP.cpp
│       │   ├── FP.h
│       │   ├── mqtt.cpp
│       │   ├── mqtt.h
│       │   ├── rest.cpp
│       │   ├── rest.h
│       │   ├── ringbuf.c
│       │   ├── ringbuf.h
│       │   ├── SC16IS750.cpp
│       │   └── SC16IS750.h
│       ├── UnoWiFiDevEd.cpp
│       └── UnoWiFiDevEd.h
├── DFRobot_DHT11
│   ├── DFRobot_DHT11.cpp
│   ├── DFRobot_DHT11.h
│   ├── examples
│   │   └── readDHT11
│   │       └── readDHT11.ino
│   ├── keywords.txt
│   ├── library.properties
│   ├── LICENSE
│   ├── README_CN.md
│   ├── README.md
│   └── resources
│       └── images
│           └── DFR0067.png
├── DHT118266
│   ├── code-of-conduct.md
│   ├── CONTRIBUTING.md
│   ├── DHT118266.h
│   ├── DHT.cpp
│   ├── DHT.h
│   ├── DHT_U.cpp
│   ├── DHT_U.h
│   ├── examples
│   │   ├── dht11.ino
│   │   └── servo.ino
│   ├── keywords.txt
│   ├── library.properties
│   ├── license.txt
│   └── README.md
├── dht11esp8266
│   ├── code-of-conduct.md
│   ├── CONTRIBUTING.md
│   ├── dht11esp8266.h
│   ├── DHT.cpp
│   ├── DHT.h
│   ├── DHT_U.cpp
│   ├── DHT_U.h
│   ├── keywords.txt
│   ├── library.properties
│   ├── license.txt
│   └── README.md
├── DHTINT
│   ├── CHANGELOG.md
│   ├── dhtint.cpp
│   ├── dhtint.h
│   ├── examples
│   │   ├── dhtint_adaptive_delay
│   │   │   └── dhtint_adaptive_delay.ino
│   │   ├── dhtint_array
│   │   │   └── dhtint_array.ino
│   │   ├── dhtint_debug
│   │   │   └── dhtint_debug.ino
│   │   ├── dhtint_endless
│   │   │   └── dhtint_endless.ino
│   │   ├── dhtint_endless_insideFunction
│   │   │   └── dhtint_endless_insideFunction.ino
│   │   ├── dhtint_getRaw
│   │   │   └── dhtint_getRaw.ino
│   │   ├── dhtint_minimum
│   │   │   └── dhtint_minimum.ino
│   │   ├── dhtint_minimum_insideFunction
│   │   │   └── dhtint_minimum_insideFunction.ino
│   │   ├── dhtint_powerDown
│   │   │   └── dhtint_powerDown.ino
│   │   ├── dhtint_pulse_diag
│   │   │   └── dhtint_pulse_diag.ino
│   │   ├── dhtint_runtime
│   │   │   └── dhtint_runtime.ino
│   │   ├── dhtint_setReadDelay
│   │   │   └── dhtint_setReadDelay.ino
│   │   ├── dhtint_suppressError
│   │   │   └── dhtint_suppressError.ino
│   │   ├── dhtint_test
│   │   │   └── dhtint_test.ino
│   │   ├── dhtint_waitForRead
│   │   │   └── dhtint_waitForRead.ino
│   │   └── dhtint_waitForRead_nonBlocking
│   │       └── dhtint_waitForRead_nonBlocking.ino
│   ├── keywords.txt
│   ├── library.json
│   ├── library.properties
│   ├── LICENSE
│   ├── README.md
│   └── test
│       └── unit_test_001.cpp
├── DHTNEW
│   ├── CHANGELOG.md
│   ├── dhtnew.cpp
│   ├── dhtnew.h
│   ├── examples
│   │   ├── dhtnew_adaptive_delay
│   │   │   └── dhtnew_adaptive_delay.ino
│   │   ├── dhtnew_array
│   │   │   └── dhtnew_array.ino
│   │   ├── dhtnew_debug
│   │   │   └── dhtnew_debug.ino
│   │   ├── dhtnew_endless
│   │   │   └── dhtnew_endless.ino
│   │   ├── dhtnew_endless_insideFunction
│   │   │   └── dhtnew_endless_insideFunction.ino
│   │   ├── dhtnew_minimum
│   │   │   └── dhtnew_minimum.ino
│   │   ├── dhtnew_minimum_insideFunction
│   │   │   └── dhtnew_minimum_insideFunction.ino
│   │   ├── dhtnew_powerDown
│   │   │   └── dhtnew_powerDown.ino
│   │   ├── dhtnew_pulse_diag
│   │   │   └── dhtnew_pulse_diag.ino
│   │   ├── dhtnew_runtime
│   │   │   └── dhtnew_runtime.ino
│   │   ├── dhtnew_setReadDelay
│   │   │   └── dhtnew_setReadDelay.ino
│   │   ├── dhtnew_suppressError
│   │   │   └── dhtnew_suppressError.ino
│   │   ├── dhtnew_test
│   │   │   └── dhtnew_test.ino
│   │   ├── dhtnew_waitForRead
│   │   │   └── dhtnew_waitForRead.ino
│   │   └── dhtnew_waitForRead_nonBlocking
│   │       └── dhtnew_waitForRead_nonBlocking.ino
│   ├── keywords.txt
│   ├── library.json
│   ├── library.properties
│   ├── LICENSE
│   ├── README.md
│   └── test
│       └── unit_test_001.cpp
├── DHT_sensor_library
│   ├── code-of-conduct.md
│   ├── CONTRIBUTING.md
│   ├── DHT.cpp
│   ├── DHT.h
│   ├── DHT_U.cpp
│   ├── DHT_U.h
│   ├── examples
│   │   ├── DHTtester
│   │   │   └── DHTtester.ino
│   │   └── DHT_Unified_Sensor
│   │       └── DHT_Unified_Sensor.ino
│   ├── keywords.txt
│   ├── library.properties
│   ├── license.txt
│   └── README.md
├── DHTStable
│   ├── DHTStable.cpp
│   ├── DHTStable.h
│   ├── examples
│   │   ├── dht11_test
│   │   │   └── dht11_test.ino
│   │   ├── dht12_test
│   │   │   └── dht12_test.ino
│   │   └── dht22_test
│   │       └── dht22_test.ino
│   ├── keywords.txt
│   ├── library.json
│   ├── library.properties
│   ├── LICENSE
│   ├── README.md
│   └── test
│       └── unit_test_001.cpp
├── EduIntro
│   ├── CONTRIBUTING.md
│   ├── examples
│   │   ├── by_board
│   │   │   ├── all
│   │   │   │   ├── Blink
│   │   │   │   │   └── Blink.ino
│   │   │   │   ├── Button
│   │   │   │   │   └── Button.ino
│   │   │   │   ├── ButtonStates
│   │   │   │   │   └── ButtonStates.ino
│   │   │   │   ├── DHT11
│   │   │   │   │   └── DHT11.ino
│   │   │   │   ├── Empty
│   │   │   │   │   └── Empty.ino
│   │   │   │   ├── LightSensor
│   │   │   │   │   └── LightSensor.ino
│   │   │   │   ├── LM35
│   │   │   │   │   └── LM35.ino
│   │   │   │   ├── Melody
│   │   │   │   │   └── Melody.ino
│   │   │   │   ├── MelodyButton
│   │   │   │   │   └── MelodyButton.ino
│   │   │   │   ├── MelodyButtonTwoSounds
│   │   │   │   │   └── MelodyButtonTwoSounds.ino
│   │   │   │   ├── MosFet
│   │   │   │   │   └── MosFet.ino
│   │   │   │   ├── PhysicalPixel
│   │   │   │   │   └── PhysicalPixel.ino
│   │   │   │   ├── PIR
│   │   │   │   │   └── PIR.ino
│   │   │   │   ├── PIRStates
│   │   │   │   │   └── PIRStates.ino
│   │   │   │   ├── Potentiometer
│   │   │   │   │   └── Potentiometer.ino
│   │   │   │   ├── Relay
│   │   │   │   │   └── Relay.ino
│   │   │   │   ├── RisingDecreasing
│   │   │   │   │   └── RisingDecreasing.ino
│   │   │   │   ├── Servo
│   │   │   │   │   └── Servo.ino
│   │   │   │   ├── ServoButton
│   │   │   │   │   └── ServoButton.ino
│   │   │   │   ├── ServoKnob
│   │   │   │   │   └── ServoKnob.ino
│   │   │   │   ├── ServoKnobContinuous
│   │   │   │   │   └── ServoKnobContinuous.ino
│   │   │   │   └── Thermistor
│   │   │   │       └── Thermistor.ino
│   │   │   └── WiFi_rev2
│   │   │       ├── IMU
│   │   │       │   └── IMU.ino
│   │   │       └── WebLed
│   │   │           └── WebLed.ino
│   │   ├── by_topic
│   │   │   ├── Blink
│   │   │   │   └── Blink.ino
│   │   │   ├── Button
│   │   │   │   └── Button.ino
│   │   │   ├── ButtonStates
│   │   │   │   └── ButtonStates.ino
│   │   │   ├── DHT11
│   │   │   │   └── DHT11.ino
│   │   │   ├── Empty
│   │   │   │   └── Empty.ino
│   │   │   ├── LightSensor
│   │   │   │   └── LightSensor.ino
│   │   │   ├── LM35
│   │   │   │   └── LM35.ino
│   │   │   ├── Melody
│   │   │   │   └── Melody.ino
│   │   │   ├── MelodyButton
│   │   │   │   └── MelodyButton.ino
│   │   │   ├── MelodyButtonTwoSounds
│   │   │   │   └── MelodyButtonTwoSounds.ino
│   │   │   ├── MosFet
│   │   │   │   └── MosFet.ino
│   │   │   ├── PhysicalPixel
│   │   │   │   └── PhysicalPixel.ino
│   │   │   ├── PIR
│   │   │   │   └── PIR.ino
│   │   │   ├── PIRStates
│   │   │   │   └── PIRStates.ino
│   │   │   ├── Potentiometer
│   │   │   │   └── Potentiometer.ino
│   │   │   ├── Relay
│   │   │   │   └── Relay.ino
│   │   │   ├── RisingDecreasing
│   │   │   │   └── RisingDecreasing.ino
│   │   │   ├── Servo
│   │   │   │   └── Servo.ino
│   │   │   ├── ServoButton
│   │   │   │   └── ServoButton.ino
│   │   │   ├── ServoKnob
│   │   │   │   └── ServoKnob.ino
│   │   │   ├── ServoKnobContinuous
│   │   │   │   └── ServoKnobContinuous.ino
│   │   │   └── Thermistor
│   │   │       └── Thermistor.ino
│   │   └── courseware
│   │       ├── cardboardKeyboard
│   │       │   └── ButtonStatesKeyboard
│   │       │       └── ButtonStatesKeyboard.ino
│   │       └── workshop_1h
│   │           ├── Blink
│   │           │   └── Blink.ino
│   │           ├── Button
│   │           │   └── Button.ino
│   │           ├── ButtonStates
│   │           │   └── ButtonStates.ino
│   │           ├── Empty
│   │           │   └── Empty.ino
│   │           ├── Melody
│   │           │   └── Melody.ino
│   │           ├── MelodyButton
│   │           │   └── MelodyButton.ino
│   │           ├── Servo
│   │           │   └── Servo.ino
│   │           └── ServoButton
│   │               └── ServoButton.ino
│   ├── keywords.txt
│   ├── library.json
│   ├── library.properties
│   ├── LICENSE
│   ├── README.md
│   └── src
│       ├── Button
│       │   ├── Button.cpp
│       │   └── Button.h
│       ├── DHT11
│       │   ├── DHT11.cpp
│       │   └── DHT11.h
│       ├── EduIntro.cpp
│       ├── EduIntro.h
│       ├── Generic
│       │   ├── AnalogInput2.cpp
│       │   ├── AnalogInput2.h
│       │   ├── Analoginput.cpp
│       │   ├── AnalogInput.h
│       │   ├── DigitalInput.cpp
│       │   ├── DigitalInput.h
│       │   ├── Output.cpp
│       │   └── Output.h
│       ├── IMU
│       │   ├── Motion.cpp
│       │   └── Motion.h
│       ├── LED
│       │   ├── LED.cpp
│       │   └── LED.h
│       ├── LightSensor
│       │   ├── LightSensor.cpp
│       │   └── LightSensor.h
│       ├── LM35
│       │   ├── LM35.cpp
│       │   └── LM35.h
│       ├── MosFet
│       │   ├── MosFet.cpp
│       │   └── MosFet.h
│       ├── Piezo
│       │   ├── Piezo.cpp
│       │   ├── Piezo.h
│       │   └── pitches.h
│       ├── PIR
│       │   ├── PIR.cpp
│       │   └── PIR.h
│       ├── Potentiometer
│       │   ├── Potentiometer.cpp
│       │   └── Potentiometer.h
│       ├── Relay
│       │   ├── Relay.cpp
│       │   └── Relay.h
│       ├── ServoMotor
│       │   ├── ServoMotor.cpp
│       │   └── ServoMotor.h
│       ├── Thermistor
│       │   ├── Thermistor.cpp
│       │   └── Thermistor.h
│       └── WiFiComm
│           ├── WiFiComm.cpp
│           └── WiFiComm.h
├── Esplora
│   ├── examples
│   │   ├── Beginners
│   │   │   ├── EsploraAccelerometer
│   │   │   │   └── EsploraAccelerometer.ino
│   │   │   ├── EsploraBlink
│   │   │   │   └── EsploraBlink.ino
│   │   │   ├── EsploraJoystickMouse
│   │   │   │   └── EsploraJoystickMouse.ino
│   │   │   ├── EsploraLedShow
│   │   │   │   └── EsploraLedShow.ino
│   │   │   ├── EsploraLedShow2
│   │   │   │   └── EsploraLedShow2.ino
│   │   │   ├── EsploraLightCalibrator
│   │   │   │   └── EsploraLightCalibrator.ino
│   │   │   ├── EsploraMusic
│   │   │   │   └── EsploraMusic.ino
│   │   │   ├── EsploraSoundSensor
│   │   │   │   └── EsploraSoundSensor.ino
│   │   │   └── EsploraTemperatureSensor
│   │   │       └── EsploraTemperatureSensor.ino
│   │   └── Experts
│   │       ├── EsploraKart
│   │       │   └── EsploraKart.ino
│   │       ├── EsploraPong
│   │       │   └── EsploraPong.ino
│   │       ├── EsploraRemote
│   │       │   └── EsploraRemote.ino
│   │       └── EsploraTable
│   │           └── EsploraTable.ino
│   ├── keywords.txt
│   ├── library.properties
│   ├── README.adoc
│   └── src
│       ├── Esplora.cpp
│       └── Esplora.h
├── IBM_LMIC_framework
│   ├── doc
│   │   ├── LMiC-v1.5.pdf
│   │   ├── README.txt
│   │   └── release-notes.txt
│   ├── examples
│   │   ├── raw
│   │   │   └── raw.ino
│   │   ├── ttn-abp
│   │   │   └── ttn-abp.ino
│   │   └── ttn-otaa
│   │       └── ttn-otaa.ino
│   ├── library.properties
│   ├── README.md
│   └── src
│       ├── aes
│       │   ├── ideetron
│       │   │   └── AES-128_V10.cpp
│       │   ├── lmic.c
│       │   └── other.c
│       ├── hal
│       │   ├── hal.cpp
│       │   └── hal.h
│       ├── lmic
│       │   ├── config.h
│       │   ├── hal.h
│       │   ├── lmic.c
│       │   ├── lmic.h
│       │   ├── lorabase.h
│       │   ├── oslmic.c
│       │   ├── oslmic.h
│       │   └── radio.c
│       └── lmic.h
├── library.txt
├── LoRa
│   ├── API.md
│   ├── examples
│   │   ├── LoRaDumpRegisters
│   │   │   └── LoRaDumpRegisters.ino
│   │   ├── LoRaDuplex
│   │   │   └── LoRaDuplex.ino
│   │   ├── LoRaDuplexCallback
│   │   │   └── LoRaDuplexCallback.ino
│   │   ├── LoRaReceiver
│   │   │   └── LoRaReceiver.ino
│   │   ├── LoRaReceiverCallback
│   │   │   └── LoRaReceiverCallback.ino
│   │   ├── LoRaSender
│   │   │   └── LoRaSender.ino
│   │   ├── LoRaSenderNonBlocking
│   │   │   └── LoRaSenderNonBlocking.ino
│   │   ├── LoRaSenderNonBlockingCallback
│   │   │   └── LoRaSenderNonBlockingCallback.ino
│   │   ├── LoRaSetSpread
│   │   │   └── LoRaSetSpread.ino
│   │   ├── LoRaSetSyncWord
│   │   │   └── LoRaSetSyncWord.ino
│   │   ├── LoRaSimpleGateway
│   │   │   └── LoRaSimpleGateway.ino
│   │   └── LoRaSimpleNode
│   │       └── LoRaSimpleNode.ino
│   ├── issue_template.md
│   ├── keywords.txt
│   ├── library.properties
│   ├── LICENSE
│   ├── README.md
│   └── src
│       ├── LoRa.cpp
│       └── LoRa.h
├── MCCI_Arduino_Development_Kit_ADK
│   ├── library.properties
│   ├── LICENSE
│   ├── README.md
│   ├── src
│   │   ├── lib
│   │   │   ├── mcciadklib_buffertoulong.c
│   │   │   ├── mcciadklib_formatdumpline.c
│   │   │   ├── mcciadklib_multiszindex.c
│   │   │   ├── mcciadklib_safecopystring.c
│   │   │   ├── mcciadklib_snprintf.c
│   │   │   └── mcciadklib_stringcomparecaseinsensitive.c
│   │   ├── mcciadk_baselib.h
│   │   ├── mcciadk_env.h
│   │   └── mcciadk_guid.h
│   └── VERSION.txt
├── MCCI_Arduino_LoRaWAN_Library
│   ├── examples
│   │   ├── header_test
│   │   │   └── header_test.ino
│   │   ├── header_test_lmic
│   │   │   └── header_test_lmic.ino
│   │   ├── header_test_network
│   │   │   └── header_test_network.ino
│   │   ├── header_test_ttn
│   │   │   └── header_test_ttn.ino
│   │   ├── simple
│   │   │   └── simple.ino
│   │   ├── simple_feather
│   │   │   └── simple_feather.ino
│   │   └── simple_sensor_bme280
│   │       └── simple_sensor_bme280.ino
│   ├── keywords.txt
│   ├── library.json
│   ├── library.properties
│   ├── LICENSE
│   ├── README.md
│   └── src
│       ├── Arduino_LoRaWAN_Actility.h
│       ├── Arduino_LoRaWAN_ChirpStack.h
│       ├── Arduino_LoRaWAN_EventLog.h
│       ├── Arduino_LoRaWAN_Generic.h
│       ├── Arduino_LoRaWAN.h
│       ├── Arduino_LoRaWAN_Helium.h
│       ├── Arduino_LoRaWAN_lmic.h
│       ├── Arduino_LoRaWAN_machineQ.h
│       ├── Arduino_LoRaWAN_network.h
│       ├── Arduino_LoRaWAN_Senet.h
│       ├── Arduino_LoRaWAN_Senra.h
│       ├── Arduino_LoRaWAN_Swisscom.h
│       ├── Arduino_LoRaWAN_ttn.h
│       └── lib
│           ├── actility_as923_netbeginregioninit.cpp
│           ├── actility_as923_netjoin.cpp
│           ├── actility_au915_netbeginregioninit.cpp
│           ├── actility_au915_netjoin.cpp
│           ├── actility_base_netjoin.cpp
│           ├── actility_eu868_netbeginregioninit.cpp
│           ├── actility_eu868_netjoin.cpp
│           ├── actility_in866_netbeginregioninit.cpp
│           ├── actility_in866_netjoin.cpp
│           ├── actility_kr920_netbeginregioninit.cpp
│           ├── actility_kr920_netjoin.cpp
│           ├── actility_us915_netbeginregioninit.cpp
│           ├── actility_us915_netjoin.cpp
│           ├── arduino_lorawan_begin.cpp
│           ├── arduino_lorawan_cEventLog.cpp
│           ├── arduino_lorawan.cpp
│           ├── arduino_lorawan_loop.cpp
│           ├── arduino_lorawan_sessionstate.cpp
│           ├── arduino_lorawan_shutdown.cpp
│           ├── chirpstack_as923_netbeginregioninit.cpp
│           ├── chirpstack_as923_netjoin.cpp
│           ├── chirpstack_au915_netbeginregioninit.cpp
│           ├── chirpstack_au915_netjoin.cpp
│           ├── chirpstack_base_netjoin.cpp
│           ├── chirpstack_eu868_netbeginregioninit.cpp
│           ├── chirpstack_eu868_netjoin.cpp
│           ├── chirpstack_in866_netbeginregioninit.cpp
│           ├── chirpstack_in866_netjoin.cpp
│           ├── chirpstack_kr920_netbeginregioninit.cpp
│           ├── chirpstack_kr920_netjoin.cpp
│           ├── chirpstack_us915_netbeginregioninit.cpp
│           ├── chirpstack_us915_netjoin.cpp
│           ├── generic_as923_netbeginregioninit.cpp
│           ├── generic_as923_netjoin.cpp
│           ├── generic_au915_netbeginregioninit.cpp
│           ├── generic_au915_netjoin.cpp
│           ├── generic_base_netjoin.cpp
│           ├── generic_eu868_netbeginregioninit.cpp
│           ├── generic_eu868_netjoin.cpp
│           ├── generic_in866_netbeginregioninit.cpp
│           ├── generic_in866_netjoin.cpp
│           ├── generic_kr920_netbeginregioninit.cpp
│           ├── generic_kr920_netjoin.cpp
│           ├── generic_us915_netbeginregioninit.cpp
│           ├── generic_us915_netjoin.cpp
│           ├── GetCountryCode.cpp
│           ├── GetRegion.cpp
│           ├── GetRegionString.cpp
│           ├── GetTxReady.cpp
│           ├── helium_base_netjoin.cpp
│           ├── helium_us915_netbeginregioninit.cpp
│           ├── helium_us915_netjoin.cpp
│           ├── LogPrintf.cpp
│           ├── machineq_base_netjoin.cpp
│           ├── machineq_us915_netbeginregioninit.cpp
│           ├── machineq_us915_netjoin.cpp
│           ├── SendBuffer.cpp
│           ├── senet_base_netjoin.cpp
│           ├── senet_us915_netbeginregioninit.cpp
│           ├── senet_us915_netjoin.cpp
│           ├── senra_base_netjoin.cpp
│           ├── senra_in866_netbeginregioninit.cpp
│           ├── senra_in866_netjoin.cpp
│           ├── SetLinkCheckMode.cpp
│           ├── swisscom_base_netjoin.cpp
│           ├── swisscom_eu868_netbeginregioninit.cpp
│           ├── swisscom_eu868_netjoin.cpp
│           ├── ttn_as923_netbeginregioninit.cpp
│           ├── ttn_as923_netjoin.cpp
│           ├── ttn_au915_netbeginregioninit.cpp
│           ├── ttn_au915_netjoin.cpp
│           ├── ttn_base_netjoin.cpp
│           ├── ttn_eu868_netbeginregioninit.cpp
│           ├── ttn_eu868_netjoin.cpp
│           ├── ttn_in866_netbeginregioninit.cpp
│           ├── ttn_in866_netjoin.cpp
│           ├── ttn_kr920_netbeginregioninit.cpp
│           ├── ttn_kr920_netjoin.cpp
│           ├── ttn_us915_netbeginregioninit.cpp
│           └── ttn_us915_netjoin.cpp
├── MCCI_Catena_Arduino_Platform
│   ├── assets
│   │   ├── CatenaBase.plantuml
│   │   ├── Catena_LoRaWAN.plantuml
│   │   ├── Catena_PollableInterface.plantuml
│   │   ├── cFram.plantuml
│   │   ├── cFramStorage.plantuml
│   │   └── FSMexample.plantuml
│   ├── examples
│   │   ├── catena_fsm
│   │   │   └── catena_fsm.ino
│   │   ├── catena_hello
│   │   │   └── catena_hello.ino
│   │   ├── catena_hello_lora
│   │   │   └── catena_hello_lora.ino
│   │   └── catena_usercommand
│   │       └── catena_usercommand.ino
│   ├── extra
│   │   └── make-lorawan-keys-entry.sh
│   ├── keywords.txt
│   ├── library.properties
│   ├── LICENSE
│   ├── README.md
│   ├── src
│   │   ├── Catena4410.h
│   │   ├── Catena4410_project_config.h
│   │   ├── Catena4420.h
│   │   ├── Catena4420_project_config.h
│   │   ├── Catena4450.h
│   │   ├── Catena4460.h
│   │   ├── Catena4470.h
│   │   ├── Catena4551.h
│   │   ├── Catena455x.h
│   │   ├── Catena4610.h
│   │   ├── Catena4611.h
│   │   ├── Catena4612.h
│   │   ├── Catena4617.h
│   │   ├── Catena4618.h
│   │   ├── Catena461x.h
│   │   ├── Catena4630.h
│   │   ├── Catena463x.h
│   │   ├── Catena4801.h
│   │   ├── Catena4802.h
│   │   ├── Catena480x.h
│   │   ├── CatenaBase.h
│   │   ├── CatenaBase_types.h
│   │   ├── Catena_BootloaderApi.h
│   │   ├── Catena_CommandStream.h
│   │   ├── Catena_CommandStream_vmicro_fixup.h
│   │   ├── Catena_Completion.h
│   │   ├── Catena_Date.h
│   │   ├── Catena_Download.h
│   │   ├── CatenaFeatherM0.h
│   │   ├── Catena_Flash_at25sf081.h
│   │   ├── Catena_Flash.h
│   │   ├── Catena_FlashParam.h
│   │   ├── Catena_Fram2k.h
│   │   ├── Catena_Fram8k.h
│   │   ├── Catena_Fram.h
│   │   ├── Catena_FramStorage.h
│   │   ├── Catena_FSM.h
│   │   ├── Catena_functional.h
│   │   ├── Catena_Guids_FramStorage.h
│   │   ├── Catena_Guids.h
│   │   ├── Catena.h
│   │   ├── Catena_Led.h
│   │   ├── Catena_limits.h
│   │   ├── Catena_Log.h
│   │   ├── Catena_Mb85rc64ta.h
│   │   ├── Catena_Mx25v8035f.h
│   │   ├── Catena_PersistentStorage.h
│   │   ├── Catena_Platforms.h
│   │   ├── Catena_PollableInterface.h
│   │   ├── CatenaRTC.h
│   │   ├── CatenaSamd21.h
│   │   ├── Catena_Serial.h
│   │   ├── Catena_Si1133.h
│   │   ├── CatenaStm32.h
│   │   ├── CatenaStm32L0.h
│   │   ├── CatenaStm32L0Rtc.h
│   │   ├── Catena_StreamLineCollector.h
│   │   ├── Catena_Timer.h
│   │   ├── Catena_Totalizer.h
│   │   ├── Catena_TxBuffer.h
│   │   ├── CatenaWingFram2k.h
│   │   ├── lib
│   │   │   ├── CatenaBase_addLoRaWanCommands.cpp
│   │   │   ├── CatenaBase.cpp
│   │   │   ├── CatenaBase_GetAbpProvisioningInfo.cpp
│   │   │   ├── CatenaBase_GetOtaaProvisioningInfo.cpp
│   │   │   ├── CatenaBase_GetPlatformForID.cpp
│   │   │   ├── CatenaBase_GetProvisioningStyle.cpp
│   │   │   ├── CatenaBase_GetSysEUI.cpp
│   │   │   ├── CatenaBase_GetUniqueIDstring.cpp
│   │   │   ├── CatenaBase_NetSave.cpp
│   │   │   ├── CatenaBase_registerCommands.cpp
│   │   │   ├── CatenaBase_SafePrintf.cpp
│   │   │   ├── Catena_BootloaderApi.cpp
│   │   │   ├── Catena_CommandStream.cpp
│   │   │   ├── Catena_Date.cpp
│   │   │   ├── Catena_Download.cpp
│   │   │   ├── Catena_Flash_at25sf081.cpp
│   │   │   ├── Catena_Fram2k.cpp
│   │   │   ├── Catena_Fram8k.cpp
│   │   │   ├── Catena_Fram_commands.cpp
│   │   │   ├── Catena_Fram.cpp
│   │   │   ├── Catena_FramStorage.cpp
│   │   │   ├── Catena_Log.cpp
│   │   │   ├── Catena_Mb85rc64ta.cpp
│   │   │   ├── Catena_Si1133.cpp
│   │   │   ├── Catena_StreamLineCollector.cpp
│   │   │   ├── Catena_Timer.cpp
│   │   │   ├── Catena_Totalizer.cpp
│   │   │   ├── Catena_TxBuffer.cpp
│   │   │   ├── samd
│   │   │   │   ├── catena4410
│   │   │   │   │   ├── Catena4410.cpp
│   │   │   │   │   ├── Catena4410_getCpuIdPlatformTable.cpp
│   │   │   │   │   ├── catena4410_getlorawankeys.cpp
│   │   │   │   │   └── Catena4410_gk_lorawan_keys.cpp
│   │   │   │   ├── catena4420
│   │   │   │   │   ├── Catena4420.cpp
│   │   │   │   │   ├── Catena4420_getCpuIdPlatformTable.cpp
│   │   │   │   │   ├── catena4420_getlorawankeys.cpp
│   │   │   │   │   └── Catena4420_gk_lorawan_keys.cpp
│   │   │   │   ├── catena4450
│   │   │   │   │   ├── Catena4450_getCpuIdPlatformTable.cpp
│   │   │   │   │   └── Catena4450_getPlatformTable.cpp
│   │   │   │   ├── catena4460
│   │   │   │   │   └── Catena4460_getPlatformTable.cpp
│   │   │   │   ├── catena4470
│   │   │   │   │   └── Catena4470_getPlatformTable.cpp
│   │   │   │   ├── CatenaRTC.cpp
│   │   │   │   ├── CatenaSamd21_begin.cpp
│   │   │   │   ├── CatenaSamd21.cpp
│   │   │   │   ├── catenasamd21_getuniqueid.cpp
│   │   │   │   ├── CatenaSamd21_registerCommands.cpp
│   │   │   │   ├── CatenaSamd21_Sleep.cpp
│   │   │   │   ├── catenasamd_gk_plaformhierarchy.cpp
│   │   │   │   ├── catenawingfram2k
│   │   │   │   │   ├── CatenaWingFram2k_begin.cpp
│   │   │   │   │   ├── CatenaWingFram2k_LoRaWAN_begin.cpp
│   │   │   │   │   ├── CatenaWingFram2k_LoRaWAN_storage.cpp
│   │   │   │   │   ├── CatenaWingFram2k_ReadVbat.cpp
│   │   │   │   │   └── CatenaWingFram2k_registerCommands.cpp
│   │   │   │   └── featherm0
│   │   │   │       ├── catenafeatherm0_begin.cpp
│   │   │   │       ├── catenafeatherm0_getprovisioninginfo.cpp
│   │   │   │       ├── catenafeatherm0_lorawan_begin.cpp
│   │   │   │       ├── catenafeatherm0_lorawan_getabpprovisioninginfo.cpp
│   │   │   │       ├── catenafeatherm0_lorawan_getotaaprovisioninginfo.cpp
│   │   │   │       ├── catenafeatherm0_lorawan_getprovisioningstyle.cpp
│   │   │   │       └── catenafeatherm0_readvbat.cpp
│   │   │   └── stm32
│   │   │       ├── catena455x
│   │   │       │   ├── Catena4551_getPlatformTable.cpp
│   │   │       │   ├── Catena455x_begin.cpp
│   │   │       │   ├── Catena455x_LoRaWAN_begin.cpp
│   │   │       │   └── Catena455x_ReadVoltage.cpp
│   │   │       ├── catena461x
│   │   │       │   ├── Catena4610_getPlatformTable.cpp
│   │   │       │   ├── Catena4610_ReadVoltage.cpp
│   │   │       │   ├── Catena4611_getPlatformTable.cpp
│   │   │       │   ├── Catena4611_ReadVoltage.cpp
│   │   │       │   ├── Catena4612_getPlatformTable.cpp
│   │   │       │   ├── Catena4612_ReadVoltage.cpp
│   │   │       │   ├── Catena4617_getPlatformTable.cpp
│   │   │       │   ├── Catena4617_ReadVoltage.cpp
│   │   │       │   ├── Catena4618_getPlatformTable.cpp
│   │   │       │   ├── Catena4618_ReadVoltage.cpp
│   │   │       │   ├── Catena461x_begin.cpp
│   │   │       │   └── Catena461x_LoRaWAN_begin.cpp
│   │   │       ├── catena463x
│   │   │       │   ├── Catena4630_getPlatformTable.cpp
│   │   │       │   ├── Catena4630_ReadVoltage.cpp
│   │   │       │   ├── Catena463x_begin.cpp
│   │   │       │   └── Catena463x_LoRaWAN_begin.cpp
│   │   │       ├── catena480x
│   │   │       │   ├── Catena4801_getPlatformTable.cpp
│   │   │       │   ├── Catena4802_getPlatformTable.cpp
│   │   │       │   ├── Catena4802_ReadVoltage.cpp
│   │   │       │   ├── Catena480x_begin.cpp
│   │   │       │   ├── Catena480x_LoRaWAN_begin.cpp
│   │   │       │   └── Catena480x_ReadVoltage.cpp
│   │   │       ├── Catena_Mx25v8035f.cpp
│   │   │       ├── CatenaStm32_begin.cpp
│   │   │       ├── CatenaStm32.cpp
│   │   │       ├── CatenaStm32_GetUniqueID.cpp
│   │   │       ├── CatenaStm32_registerCommands.cpp
│   │   │       └── stm32l0
│   │   │           ├── CatenaStm32L0_begin.cpp
│   │   │           ├── CatenaStm32L0_CalibrateSystemClock.cpp
│   │   │           ├── CatenaStm32L0_FlashParams_kPageEndSignature1_Guid.cpp
│   │   │           ├── CatenaStm32L0_GetSystemClockRate.cpp
│   │   │           ├── CatenaStm32L0_LoRaWAN_begin.cpp
│   │   │           ├── CatenaStm32L0_LoRaWAN_getabpprovisioninginfo.cpp
│   │   │           ├── CatenaStm32L0_LoRaWAN_getotaaprovisioninginfo.cpp
│   │   │           ├── CatenaStm32L0_LoRaWAN_getprovisioningstyle.cpp
│   │   │           ├── CatenaStm32L0_LoRaWAN_storage.cpp
│   │   │           ├── CatenaStm32L0_ReadAnalog.cpp
│   │   │           ├── CatenaStm32L0_registerCommands.cpp
│   │   │           ├── CatenaStm32L0Rtc.cpp
│   │   │           └── CatenaStm32L0_Sleep.cpp
│   │   └── McciHwInfo.h
│   └── TODO.md
├── MCCI_FRAM_I2C
│   ├── examples
│   │   └── MB85RC256V
│   │       └── MB85RC256V.ino
│   ├── library.properties
│   ├── LICENSE
│   ├── README.md
│   └── src
│       ├── Adafruit_FRAM_I2C.h
│       ├── lib
│       │   └── MCCI_FRAM_I2C.cpp
│       └── MCCI_FRAM_I2C.h
├── RTCZero
│   ├── examples
│   │   ├── Epoch
│   │   │   └── Epoch.ino
│   │   ├── SimpleRTC
│   │   │   └── SimpleRTC.ino
│   │   ├── SimpleRTCAlarm
│   │   │   └── SimpleRTCAlarm.ino
│   │   └── SleepRTCAlarm
│   │       └── SleepRTCAlarm.ino
│   ├── keywords.txt
│   ├── library.properties
│   ├── README.adoc
│   └── src
│       ├── RTCZero.cpp
│       └── RTCZero.h
└── WiFiNINA
    ├── CHANGELOG
    ├── examples
    │   ├── AP_SimpleWebServer
    │   │   ├── AP_SimpleWebServer.ino
    │   │   └── arduino_secrets.h
    │   ├── ConnectNoEncryption
    │   │   ├── arduino_secrets.h
    │   │   └── ConnectNoEncryption.ino
    │   ├── ConnectWithWEP
    │   │   ├── arduino_secrets.h
    │   │   └── ConnectWithWEP.ino
    │   ├── ConnectWithWPA
    │   │   ├── arduino_secrets.h
    │   │   └── ConnectWithWPA.ino
    │   ├── ConnectWithWPA2Enterprise
    │   │   ├── arduino_secrets.h
    │   │   └── ConnectWithWPA2Enterprise.ino
    │   ├── ScanNetworks
    │   │   └── ScanNetworks.ino
    │   ├── ScanNetworksAdvanced
    │   │   └── ScanNetworksAdvanced.ino
    │   ├── SimpleWebServerWiFi
    │   │   ├── arduino_secrets.h
    │   │   └── SimpleWebServerWiFi.ino
    │   ├── Tools
    │   │   ├── CheckFirmwareVersion
    │   │   │   └── CheckFirmwareVersion.ino
    │   │   ├── FirmwareUpdater
    │   │   │   ├── Endianess.ino
    │   │   │   ├── ESP32BootROM.cpp
    │   │   │   ├── ESP32BootROM.h
    │   │   │   └── FirmwareUpdater.ino
    │   │   └── SerialNINAPassthrough
    │   │       └── SerialNINAPassthrough.ino
    │   ├── WiFiChatServer
    │   │   ├── arduino_secrets.h
    │   │   └── WiFiChatServer.ino
    │   ├── WiFiPing
    │   │   ├── arduino_secrets.h
    │   │   └── WiFiPing.ino
    │   ├── WiFiSSLClient
    │   │   ├── arduino_secrets.h
    │   │   └── WiFiSSLClient.ino
    │   ├── WiFiStorage
    │   │   └── WiFiStorage.ino
    │   ├── WiFiUdpNtpClient
    │   │   ├── arduino_secrets.h
    │   │   └── WiFiUdpNtpClient.ino
    │   ├── WiFiUdpSendReceiveString
    │   │   ├── arduino_secrets.h
    │   │   └── WiFiUdpSendReceiveString.ino
    │   ├── WiFiWebClient
    │   │   ├── arduino_secrets.h
    │   │   └── WiFiWebClient.ino
    │   ├── WiFiWebClientRepeating
    │   │   ├── arduino_secrets.h
    │   │   └── WiFiWebClientRepeating.ino
    │   └── WiFiWebServer
    │       ├── arduino_secrets.h
    │       └── WiFiWebServer.ino
    ├── keywords.txt
    ├── library.properties
    ├── README.adoc
    └── src
        ├── utility
        │   ├── debug.h
        │   ├── nano_rp2040_support.cpp
        │   ├── server_drv.cpp
        │   ├── server_drv.h
        │   ├── spi_drv.cpp
        │   ├── spi_drv.h
        │   ├── wifi_drv.cpp
        │   ├── wifi_drv.h
        │   ├── WiFiSocketBuffer.cpp
        │   ├── WiFiSocketBuffer.h
        │   ├── wifi_spi.h
        │   ├── wl_definitions.h
        │   └── wl_types.h
        ├── WiFiClient.cpp
        ├── WiFiClient.h
        ├── WiFi.cpp
        ├── WiFi.h
        ├── WiFiNINA.h
        ├── WiFiServer.cpp
        ├── WiFiServer.h
        ├── WiFiSSLClient.cpp
        ├── WiFiSSLClient.h
        ├── WiFiStorage.cpp
        ├── WiFiStorage.h
        ├── WiFiUdp.cpp
        └── WiFiUdp.h

521 directories, 1664 files

Einfach Deinen Sketch zeigen.
Schau mal in ein Beispiel Deiner Lib. Da sieht das include anders aus.
Sketch und Lib müssen zusammen passen. Nicht einfach irgendwelche Teile zusammen kopieren.

Gruß Tommy

Mein original Sketch:

lora_shield_cayenne_and_ttn-abpClient

Include

#include <dht.h>
#include <lmic.h>
#include <hal/hal.h>
#include <SPI.h>