2019-02-10 18:35:12 +00:00
/*
2019-08-26 00:58:12 +00:00
TTGO T - BEAM Tracker for The Things Network
2019-02-10 18:35:12 +00:00
Copyright ( C ) 2018 by Xose Pérez < xose dot perez at gmail dot com >
This code requires LMIC library by Matthijs Kooijman
https : //github.com/matthijskooijman/arduino-lmic
This program is free software : you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation , either version 3 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program . If not , see < http : //www.gnu.org/licenses/>.
*/
# pragma once
# include <Arduino.h>
# include <lmic.h>
void ttn_register ( void ( * callback ) ( uint8_t message ) ) ;
// -----------------------------------------------------------------------------
// Version
// -----------------------------------------------------------------------------
# define APP_NAME "TTN MAP-TRACK"
2019-08-23 14:22:03 +00:00
# define APP_VERSION "1.1.0"
2019-02-10 18:35:12 +00:00
// -----------------------------------------------------------------------------
// Configuration
// -----------------------------------------------------------------------------
2019-08-23 22:05:07 +00:00
// Select which T-Beam board is being used. Only uncomment one.
2020-01-17 23:37:37 +00:00
// #define T_BEAM_V07 // AKA Rev0 (first board released)
# define T_BEAM_V10 // AKA Rev1 (second board released)
2019-08-23 22:05:07 +00:00
// Select the payload format. Change on TTN as well. Only uncomment one.
# define PAYLOAD_USE_FULL
2019-08-26 00:55:00 +00:00
// #define PAYLOAD_USE_CAYENNE
2019-08-23 22:05:07 +00:00
2019-08-28 23:49:13 +00:00
// If using a single-channel gateway, uncomment this next option and set to your gateway's channel
//#define SINGLE_CHANNEL_GATEWAY 0
2019-08-29 00:10:32 +00:00
// If you are having difficulty sending messages to TTN after the first successful send,
// uncomment the next option and experiment with values (~ 1 - 5)
//#define CLOCK_ERROR 5
2019-02-10 18:35:12 +00:00
# define DEBUG_PORT Serial // Serial debug port
# define SERIAL_BAUD 115200 // Serial debug baud rate
# define SLEEP_BETWEEN_MESSAGES 0 // Do sleep between messages
2020-02-01 13:01:22 +00:00
# define SEND_INTERVAL 60000 // Sleep for these many millis
2019-02-10 18:35:12 +00:00
# define MESSAGE_TO_SLEEP_DELAY 5000 // Time after message before going to sleep
# define LOGO_DELAY 5000 // Time to show logo on first boot
# define LORAWAN_PORT 10 // Port the messages will be sent to
# define LORAWAN_CONFIRMED_EVERY 0 // Send confirmed message every these many messages (0 means never)
# define LORAWAN_SF DR_SF7 // Spreading factor
# define LORAWAN_ADR 0 // Enable ADR
2020-02-01 13:01:22 +00:00
# define REQUIRE_RADIO true // If true, we will fail to start if the radio is not found
2020-01-20 18:51:35 +00:00
// If not defined, we will wait for lock forever
// #define GPS_WAIT_FOR_LOCK 5000 // Wait 5s after every boot for GPS lock
2019-02-10 18:35:12 +00:00
2020-01-19 02:00:00 +00:00
// If defined, we will enter deep sleep after sending our packet. We will sleep until this interval expires or the user presses the button
2020-01-20 18:51:35 +00:00
// #define DEEPSLEEP_INTERVAL (60 * 60 * 1000ULL) // sleep after we've received one message from the server (or we ran out of time), sleep for this many msecs
2020-01-19 02:00:00 +00:00
2019-02-10 18:35:12 +00:00
// -----------------------------------------------------------------------------
// DEBUG
// -----------------------------------------------------------------------------
# ifdef DEBUG_PORT
# define DEBUG_MSG(...) DEBUG_PORT.printf( __VA_ARGS__ )
# else
# define DEBUG_MSG(...)
# endif
// -----------------------------------------------------------------------------
// Custom messages
// -----------------------------------------------------------------------------
# define EV_QUEUED 100
# define EV_PENDING 101
# define EV_ACK 102
# define EV_RESPONSE 103
// -----------------------------------------------------------------------------
// General
// -----------------------------------------------------------------------------
2019-08-26 00:44:56 +00:00
# define I2C_SDA 21
# define I2C_SCL 22
2019-02-10 18:35:12 +00:00
2019-08-26 00:44:56 +00:00
# if defined(T_BEAM_V07)
2020-01-19 01:41:17 +00:00
# define LED_PIN 14
2019-08-26 00:44:56 +00:00
# define BUTTON_PIN 39
# elif defined(T_BEAM_V10)
# define BUTTON_PIN 38
# endif
2019-02-10 18:35:12 +00:00
// -----------------------------------------------------------------------------
// OLED
// -----------------------------------------------------------------------------
2019-08-26 00:55:00 +00:00
# define SSD1306_ADDRESS 0x3C
2019-02-10 18:35:12 +00:00
// -----------------------------------------------------------------------------
// GPS
// -----------------------------------------------------------------------------
# define GPS_SERIAL_NUM 1
# define GPS_BAUDRATE 9600
2019-07-11 08:07:14 +00:00
# define USE_GPS 1
2019-02-10 18:35:12 +00:00
2019-08-23 22:05:07 +00:00
# if defined(T_BEAM_V07)
2019-08-26 00:55:00 +00:00
# define GPS_RX_PIN 12
# define GPS_TX_PIN 15
2019-08-23 22:05:07 +00:00
# elif defined(T_BEAM_V10)
2019-08-26 00:55:00 +00:00
# define GPS_RX_PIN 34
# define GPS_TX_PIN 12
2019-08-23 22:05:07 +00:00
# endif
2019-02-10 18:35:12 +00:00
// -----------------------------------------------------------------------------
// LoRa SPI
// -----------------------------------------------------------------------------
# define SCK_GPIO 5
# define MISO_GPIO 19
# define MOSI_GPIO 27
# define NSS_GPIO 18
2020-01-17 23:37:37 +00:00
# if defined(T_BEAM_V10)
# define RESET_GPIO 14
# else
2019-02-10 18:35:12 +00:00
# define RESET_GPIO 23
2020-01-17 23:37:37 +00:00
# endif
2019-02-10 18:35:12 +00:00
# define DIO0_GPIO 26
2020-01-18 21:28:12 +00:00
# define DIO1_GPIO 33 // Note: not really used on this board
# define DIO2_GPIO 32 // Note: not really used on this board
2019-08-23 22:05:07 +00:00
// -----------------------------------------------------------------------------
2019-08-26 00:44:56 +00:00
// AXP192 (Rev1-specific options)
2019-08-23 22:05:07 +00:00
// -----------------------------------------------------------------------------
2020-01-17 23:39:01 +00:00
// #define AXP192_SLAVE_ADDRESS 0x34 // Now defined in axp20x.h
2019-08-26 00:44:56 +00:00
# define GPS_POWER_CTRL_CH 3
# define LORA_POWER_CTRL_CH 2
# define PMU_IRQ 35