/******************************************************************************* * The Things Network - ABP Feather * * Example of using an Adafruit Feather M0 and DHT22 with a * single-channel TheThingsNetwork gateway. * * This uses ABP (Activation by Personalization), where session keys for * communication would be assigned/generated by TTN and hard-coded on the device. * * Learn Guide: https://learn.adafruit.com/lora-pi * * Copyright (c) 2015 Thomas Telkamp and Matthijs Kooijman * Copyright (c) 2018 Terry Moore, MCCI * Copyright (c) 2018 Brent Rubell, Adafruit Industries * * 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. *******************************************************************************/ #include #include #include #include // DHT digital pin and sensor type #define DHTPIN 60 #define DHTTYPE DHT22 // LoRaWAN NwkSKey, network session key static const PROGMEM u1_t NWKSKEY[16] = { 0x52, 0x92, 0xC0, 0x72, 0x2D, 0x3C, 0x55, 0x5E, 0xE4, 0xB9, 0x9E, 0x9B, 0x88, 0x66, 0x47, 0xF1 }; // LoRaWAN AppSKey, application session key static const u1_t PROGMEM APPSKEY[16] = { 0xC4, 0x30, 0xEF, 0x56, 0x4F, 0x6D, 0xA2, 0x56, 0x1F, 0x15, 0x2F, 0xB8, 0x62, 0xC7, 0xCA, 0xC2 }; // LoRaWAN end-device address (DevAddr) // See http://thethingsnetwork.org/wiki/AddressSpace // The library converts the address to network byte order as needed. #ifndef COMPILE_REGRESSION_TEST static const u4_t DEVADDR = 0x260212B6; #else static const u4_t DEVADDR = 0; #endif // 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 arduino-lmic/project_config/lmic_project_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) { } // Data Packet to Send to TTN static osjob_t sendjob; // Schedule TX every this many seconds (might become longer due to duty // cycle limitations). const unsigned TX_INTERVAL = 10; const unsigned GPS_INTERVAL = 1; // Pin mapping for Adafruit Feather M0 LoRa const lmic_pinmap lmic_pins = { .nss = 10, .rxtx = LMIC_UNUSED_PIN, .rst = 9, .dio = {2, 3, LMIC_UNUSED_PIN}, }; // init. DHT //DHT dht(DHTPIN, DHTTYPE); /**************************************************** * Arduino drivers * - LoRaWAN * - GPS ***************************************************/ TinyGPSPlus gps; /**************************************************** * Track each pair of X and Y coordinates * - arrays are used by the pnpoly function ***************************************************/ const uint8_t N_POLY_MAX=10; float polyx[N_POLY_MAX]; float polyy[N_POLY_MAX]; int n_poly=0; /**************************************************** * Add a coordinate to the arrays * - stores a total of N_POLY_MAX pairs ***************************************************/ const int push_vert(const float x, const float y) { if(n_poly>N_POLY_MAX) return 0; polyx[n_poly]=x; polyy[n_poly]=y; n_poly++; return 1; } /**************************************************** * 'Clear' pairs of coordinates ***************************************************/ void clear_verts() { n_poly=0; } /**************************************************** * Check a pair of coordinates against two lists * of vertices * - https://wrf.ecse.rpi.edu//Research/Short_Notes/pnpoly.html ***************************************************/ const int pnpoly(int nvert, const float *vertx, const float *verty, const float testx, const float testy) { int i, j, c = 0; for (i = 0, j = nvert-1; i < nvert; j = i++) { if ( ((verty[i]>testy) != (verty[j]>testy)) && (testx < (vertx[j]-vertx[i]) * (testy-verty[i]) / (verty[j]-verty[i]) + vertx[i]) ) c = !c; } return c; } /**************************************************** * Test a coordinate against all vertices * - takes current GPS coordinates * - return 1 if in bounds ***************************************************/ const int check_bounds(const float x, const float y) { return pnpoly(n_poly, polyx, polyy, x, y); } /**************************************************** * Load coordinates from protobuff stream * - currently a maximum of 10 coordinates * - loading arrays in nanopb does not appear * to work. ***************************************************/ void import_protobuf(const uint8_t *protobuffer, const uint32_t size) { if(size != 122) { Serial.println("Failed to decode"); return; } Serial.println("Recieved valid protobuf data?"); uint32_t isr; isr = 0; isr = protobuffer[1]; if(isr>N_POLY_MAX) isr = N_POLY_MAX; clear_verts(); const uint8_t *ptr = protobuffer + 5; for(uint32_t i=0;i0) { gps.encode(softserial_read()); } if(!is_sending && gps.location.isValid()) { do_send(&sendjob); } os_setTimedCallback(&sendjob, os_getTime()+sec2osticks(GPS_INTERVAL), do_gps); } void setup() { Serial.begin(4800); softserial_init(); delay(100); Serial.println(F("Starting")); // 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. // 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 (0x13, DEVADDR, nwkskey, appskey); LMIC_selectSubBand(1); // 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 LMIC_setDrTxpow(DR_SF7,14); os_setTimedCallback(&sendjob, os_getTime()+sec2osticks(GPS_INTERVAL), do_gps); } void loop() { os_runloop_once(); }