Archives de catégorie : IoT-M2M

LoRa & l’APRS

Ayant vue passer des trucs intéressant sur Tweeter à propos de L0Ra et d’une utilisation amateur, j’ai donc commandé via Aliexpress une carte TTGo LoRa32 V2.1 433Mhz ESP32 et une carte T-Beam 433MHZ ESP32 avec GPS, le tout pour 45€ env, l’une devant servir d’iGate pour la réception, et l’autre de tracker, les Chinois ayant fait l’erreur de m’envoyer deux cartes TTGo LoRa32 V2.1 433Mhz ESP32,  j’ai donc utilisé la deuxième en tracker en y rajoutant un module GPS NEO6 qui trainai au fond d’un tiroir. Ces modules relativement compact sont également équipés d’un contrôleur Wifi/Bluetooth, d’un chargeur de batterie Lipo, d’un écran OLED. Il existe des version 868 et 915Mhz. Compter 20dbm de puissance max de sortie.

HARDWARE

Commençons par remplacer les antennes ridicules fournis, par quelques chose d’un peu plus performant, un fouet taillé pour 433.775

SOFTWARE

Le code original viens de oe3cjb https://github.com/oe3cjb/TTGO-T-Beam-LoRa-APRS j’y est supprimer la partie émission WX, capteur température/ humidité.

RECEPTION

Coté réception, sur une Comet GP1, pas vraiment bien dégagé et sur le coté d’un bâtiment, premier essai concluant à une portée d’environ 1km en ville, des essais supplémentaire sont a faire avec une Nagoya UT106UV en mobile.

Pour la programmation de l’iGate voir le site de F4WAT ou le github, qui propose le stockage des données RSSI et SNR pour analyse de couverture.

https://github.com/jdenoy/LoRa_APRS_iGate/

AMELIORATION/RESTE A FAIRE:

  • Mettre une led pour signalé le TX.
  • Rajouter une interface ETH/LAN en PoE sur le récepteur pour monter sur un pylône.
  • Faire des essais avec un ampli de quelques watts.

UPDATE: 7/4/2021

Version Ethernet disponible! merci a OE5BPA pour la carte d’adaptation permettant d’accueillir le LCD et le module L0Ra. Il faut maintenant mettre en boite etanche et trouvé un point haut …

UPDATE: 24/5/2021

Mise en boite étanche faite, un connecteur USB permet de reprogrammé sans ouvrir la boite, manque plus qu’une bonne antenne.

Ressources:

http://f5kmy.fr/spip.php?article510
https://www.f4wat.xyz/2020/12/28/lora-aprs-i-gate-tracker
https://wiki.fr-emcom.com/lora (un Wiki avec des idées et infos intéressantes)
https://www.lora-aprs.info/docs/LoRa_APRS_iGate/quick-start-guide/ (Guide de démarrage en Allemand)

Use POCSAG to send telemetric data

There is simple way to monitor, transmit, and create alert, (event), with a Arduino and transmit result data with POCSAG. There is a easy experimental way. Using Arduino and RFM22 board, as well you can use Si4432, you can send data on Pocsag QRG 439.9875Mhz Ham band.

I monitor GPS coordinates, temperature, with a DS18B20, and Vcc value, and create an alert if Vcc drop under 5volts.

Data are sended every five minutes, or instantly if alert event.

There is the result with PDW:

Some experimentation’s with small UHF PA, RFM22 board and Arduino UNO.

Arduino Sketch:

[CODE]

Monitoring your network with SIGFOX

Ethernet-monitoring-with-SigFox

I’have finally found an excuse to use my Akeru SigFox board, with some lines on Arduino, two libraries, and a Ethernet shield, you can monitor if your network getaway, or server, website .. what you want in fact, still alive, with a ICMP request. The akeru board is stacked with the Ethernet shield, the loop check is the defined IP adress respond to ICMP request, if not, the akeru board send a SigFox request to the SigFox network, then the callback function send a email alert.
Continuer la lecture de Monitoring your network with SIGFOX

Postbox detector with SigFox Akeru board

The idea of this project is to easy detect if the postman has put some letter’s in the box … or not. Problem, i live in a apartment, 3th floor, no communication link can be established between my apartment and the mailbox, Wifi networks are not available, ISM 433mhz, 2.4ghz link don’t work, GSM consumption is to high … but SigFox Akeru board work like a charm, amazing for only 25mw of output power with a lot of concrete and metal around…

2015-12-07 17.17.44 Continuer la lecture de Postbox detector with SigFox Akeru board

Getting started with the Sigfox API & php/json

This is, two files written to get data from SigFox backend, one to get message list, and other one to get the device type, it’s can be a good start for your application if you are not familiar with php and json, just edit the file, put your informations, and upload to your server. Data from backend are collected through curl and GET method, stored in a json file (be careful with security permissions) and decoded with json_decode function.

https://github.com/tonygir/SigFox/

message
Continuer la lecture de Getting started with the Sigfox API & php/json