Difference between revisions of "Dragino Lora/GPS HAT"

From ArmadeusWiki
Jump to: navigation, search
(LoRa™)
(LoRa™)
Line 6: Line 6:
  
 
==LoRa™==
 
==LoRa™==
 +
* RESET is connected to RPi GPIO0 which is gpio24 on [[OPOS6UL]]
 +
* nSS is connected to RPi GPIO6, which is gpio97 on [[OPOS6UL]]
 +
* DIO0 is connected to RPI GPIO7, which is gpio10 on [[OPOS6UL]]
 +
 
* Uses HOPERF RFM96W module (clone of Semtech's SX1276 ?) which is controlled through SPI bus.
 
* Uses HOPERF RFM96W module (clone of Semtech's SX1276 ?) which is controlled through SPI bus.
 
<pre class="apf">
 
<pre class="apf">

Revision as of 18:09, 28 October 2016

Page under construction... Construction.png Informations on this page are not guaranteed !!

Instructions to use Dragino Lora/GPS HAT on OPOS6ULDev (thanks to RaspberryPi™ compatible connector).

[1]

LoRa™

  • RESET is connected to RPi GPIO0 which is gpio24 on OPOS6UL
  • nSS is connected to RPi GPIO6, which is gpio97 on OPOS6UL
  • DIO0 is connected to RPI GPIO7, which is gpio10 on OPOS6UL
  • Uses HOPERF RFM96W module (clone of Semtech's SX1276 ?) which is controlled through SPI bus.
# modprobe spidev
  • Testing that chip is recognised with python spidev:
    • Bring chip out of reset:
# echo 24 > /sys/class/gpio/export
# echo out > /sys/class/gpio/gpio24/direction
# echo 0 > /sys/class/gpio/gpio24/value
# echo 1 > /sys/class/gpio/gpio24/value
    • activate it:
# echo 97 > /sys/class/gpio/export
# echo out > /sys/class/gpio/gpio97/direction
# echo 0 > /sys/class/gpio/gpio97/value
    • read ID (register 0x42):
import spidev

spi = spidev.SpiDev()
spi.open(3,0)
to_send=[0x42,0x00]
spi.xfer(to_send)
[255, 255]

GPS

Links


LoRa is a registered trademark of Semtech.

RaspberryPi is a registered trademark of RaspberryPi Foundation.