remove some text bloat
This commit is contained in:
parent
2cae488de8
commit
bd7b74585f
29
collar.cpp
29
collar.cpp
|
@ -1,35 +1,9 @@
|
||||||
/*******************************************************************************
|
|
||||||
* 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 <lmic.h>
|
#include <lmic.h>
|
||||||
#include <hal/hal.h>
|
#include <hal/hal.h>
|
||||||
#include <TinyGPS++.h>
|
#include <TinyGPS++.h>
|
||||||
|
|
||||||
#include <AltSoftSerial.h>
|
#include <AltSoftSerial.h>
|
||||||
|
|
||||||
|
|
||||||
// DHT digital pin and sensor type
|
|
||||||
#define DHTPIN 60
|
|
||||||
#define DHTTYPE DHT22
|
|
||||||
|
|
||||||
// LoRaWAN NwkSKey, network session key
|
// 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 };
|
static const PROGMEM u1_t NWKSKEY[16] = { 0x52, 0x92, 0xC0, 0x72, 0x2D, 0x3C, 0x55, 0x5E, 0xE4, 0xB9, 0x9E, 0x9B, 0x88, 0x66, 0x47, 0xF1 };
|
||||||
|
|
||||||
|
@ -70,9 +44,6 @@ const lmic_pinmap lmic_pins = {
|
||||||
.dio = {2, 3, LMIC_UNUSED_PIN},
|
.dio = {2, 3, LMIC_UNUSED_PIN},
|
||||||
};
|
};
|
||||||
|
|
||||||
// init. DHT
|
|
||||||
//DHT dht(DHTPIN, DHTTYPE);
|
|
||||||
|
|
||||||
/****************************************************
|
/****************************************************
|
||||||
* Arduino drivers
|
* Arduino drivers
|
||||||
* - LoRaWAN
|
* - LoRaWAN
|
||||||
|
|
Loading…
Reference in New Issue
Block a user