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
- Host: GitHub
- URL: https://github.com/robmarkcole/lopy-micropython-sigfox
- Owner: robmarkcole
- License: mit
- Created: 2018-03-12T06:40:32.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-12T08:29:10.000Z (over 8 years ago)
- Last Synced: 2025-06-25T19:11:43.558Z (12 months ago)
- Size: 1.28 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
}
```