An open API service indexing awesome lists of open source software.

https://github.com/robmarkcole/lopy-micropython-sigfox

How I am using my Lopy with Sigfox
https://github.com/robmarkcole/lopy-micropython-sigfox

Last synced: 4 months ago
JSON representation

How I am using my Lopy with Sigfox

Awesome Lists containing this project

README

          

# Lopy-micropython-Sigfox
How I am using my Lopy with Sigfox

## Hardware
* LoPy4: https://pycom.io/product/lopy4/
* Pinout: https://docs.pycom.io/chapter/datasheets/development/lopy4.html
* PyTrack: https://pycom.io/product/pytrack/
* Antenna: https://pycom.io/product/lora-antenna-kit/
* Case: https://pycom.io/product/ip67-case/

## Software
#### Pycom
Pycom provide the libraries for their harware.
* https://www.hackster.io/bucknalla/sending-a-sigfox-message-with-micropython-52b2a1
* https://docs.pycom.io/chapter/firmwareapi/pycom/network/sigfox.html
* https://github.com/pycom/pycom-libraries/tree/master/examples/sigfoxUplink
* https://docs.pycom.io/chapter/pytrackpysense/apireference/pytrack.html

#### pySigFox
This is a library for interacting with the Sigfox rest API.
* https://github.com/hecko/pySigfox

#### Jupyter
Interact with the LpY via a Jupyter notebook:
* https://github.com/adafruit/jupyter_micropython_kernel
In `kernel.json` I have:
```json
{
"argv": ["python3",
"-m", "jupyter_micropython_kernel",
"/dev/cu.usbmodemPy343431", "115200",
"-f", "{connection_file}"],
"display_name": "MicroPython",
"language": "micropython"
}
```