Archives par mot-clé : aprs

LoRa_APRS_Tracker 1W DIY firmware

Une description d’un tracker APRS, basé sur le firmware « DIY 1W » de richonguzman , firmware dispo depuis https://github.com/richonguzman/LoRa_APRS_Tracker

La cœur est un ESP32 DEVKIT Wroom, relié a un module radio LoRa E22-400M30S, de chez Ebyte, sortant 30dbm. L’écran LCD, pas indispensable est un OLED I2C 0,96, le bouton poussoir, d’accès au menu que l’on retrouve sur les carte TBeam TTGO, est quand à lui relié à la Pin 15.

Coté GPS, un NEO6 ou 8M peut fonctionner sans soucis (attention au respect du baudrate).

Une LED bicolore permet d’avoir à la fois l’état du lock GPS, et le signalement des émissions des trames LoRa.

L’alimentation est confié à un LDO TPS73801, c’est un ajustable qu’il faudra finement tuné sur 5,2v pour obtenir le plein potentiel du montage…

Le tout logé dans un boitier de 70×90 mm

  • J’ai du passé un coup de Dremel sur le PCB, pour que le, connecteur SMA puisse se logé dans le boitier.
  • La pin 35 relié au bouton poussoir est restée à la masse durant la conception, un coup de scalpel a résolu le souci.
  • Le GPS étant déporté, un petit fil relie la sortie du « lock » vers l’une des pattes de la LED.
  • Reste à faire une découpe pour l’afficheur OLED … voir ci dessous.

Le Pinout de la board

// LoRa Radio
#define HAS_SX1268
#define HAS_1W_LORA
#define RADIO_SCLK_PIN 18
#define RADIO_MISO_PIN 19
#define RADIO_MOSI_PIN 23
#define RADIO_CS_PIN 5
#define RADIO_RST_PIN 27
#define RADIO_DIO1_PIN 12
#define RADIO_BUSY_PIN 14
#define RADIO_RXEN 32
#define RADIO_TXEN 25

// Display
#undef OLED_SDA
#undef OLED_SCL
#undef OLED_RST

#define OLED_SDA 21
#define OLED_SCL 22
#define OLED_RST -1

// GPS
#define GPS_RX 17
#define GPS_TX 16

// OTHER
#define BUTTON_PIN 15
#define BATTERY_PIN 35

Weekend project, do APRS with your KT8900 transceiver

 

This little cheap Chinese transceiver can be found on Ebay, or Aliexpress for 60$, supporting VHF/UHF, can Tx up to 25W. A complete description and testing page is available on G7EOB website

You plan to drive for a long way? broadcast your position on APRS Network, with some components you can build a small tracker. Arduino sketch is based from Trackuino, EA5HAV Javi

Trackuino is more intended to be used on ballon flights, but can work for APRS general purpose.

With some minor modifications, the tracker can send position depending of speed of the vehicle. Reading var gps_speed parser and set the APRS_PERIOD do the job.

Just bellow, is the schematic, D3 is used to generate the modulation, through the trimmer you can adjust the modulation level, D12 is used to saturate the transistor and do the PTT, GPS1 is GPS shield, but for my test i have used a old EM406. A0 is used to monitor the battery voltage with a resistor divider. 10k/3.3k, a temperature sensor LM60, is connected A1. All parameters, like callsign, Gps baudrate, pin assignation …. can be set into the config.h file

Shematic

You need:

  • Arduino Nano , or Mini, i prefer Nano because it’s powered @5v, so no need external level shifter for the GPS connection.
  • GPS head, like EM406, or a GPS Board (Neo 7M) …
  • A temperature sensor LM60 (option)
  • Two resistors to monitor the battery voltage (option)
  • 7805 voltage regulator with two tantalum capacitor
  • A 2n2222 transistor to drive the PTT
  • A 10K trimmer with a 1uf cap
  • A short network RJ45 cable
  • Wire, pin header, veroboard

Yes, i need a little nice box

27.05.2018

It’s more clean with a true pcb and a nice box.

Download file (pcb ARES file, Arduino sketch, shematic …)

APRS tracker with DRA818V

Small prototype of combination between trackuino and DRA818V,

Overview

« Trackuino is intended for use by licensed radio amateurs. By operating on the standard APRS frequency, the signal can be picked up by an Internet gateway and reported on aprs.fi, so anyone with an Internet connection can track the tracker »

The idea of this project was to build a trackuino board with small gps module, low power arduino pro mini (3.3v @8mhz), a VHF transceiver DRA818V, and power management integrated. vue-dessus-dra818v_2with_antenna Continuer la lecture de APRS tracker with DRA818V