This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This script does not start networking, you will need to do that yourself or add network init to this file | |
| # | |
| # This is only a demo, but could easily be extended to switch on and off LEDs, display sensor data, etc... | |
| # | |
| # I created my certificates using this shell script: https://github.com/SvOlli/micropython-https-server/blob/master/cert/create_cert.sh | |
| # And converted them using these commands: | |
| # $ openssl rsa -outform der -in example.key -out example.der.key | |
| # $ openssl x509 -outform der -in example.crt -out example.der.crt | |
| # | |
| # This script based on: https://github.com/micropython/micropython/blob/4d9e657f0ee881f4a41093ab89ec91d03613744d/examples/network/http_server_ssl.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # I could not find any useful examlpes of getting a ublox GNSS working | |
| # in Micropython, so I wrote this one. My model is the SAM-M8Q and this | |
| # code might also work with other ublox I2C GNSS modules. | |
| # | |
| # In this example I am using micropyGPS.py to parse the NMEA sentences. | |
| # https://github.com/inmcm/micropyGPS | |
| # | |
| # Code is MIT licence | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # After not being able to find any code for Micropython on the | |
| # Pi Pico that I could use to operate my newly acquired BBQ20KBD | |
| # from Solder Party on Tindie, I started experimenting and have | |
| # this rough piece of code to prove that it is possible to | |
| # communicate with the BBQ20KBD. | |
| # | |
| # My contributions are MIT Licenced, but understand that much of | |
| # this code was pulled from multiple sources online, many without | |
| # discernable licences. | |
| # |