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
| /* | |
| Getting the time and date in your timezone using Ublox commands | |
| Originally Written By: davidallenmann | |
| Modified By: Ho Yun "Bobby" Chan | |
| SparkFun Electronics | |
| Date: April 16th, 2019 | |
| License: MIT. See license file for more information but you can | |
| basically do whatever you want with this code. | |
| This is a modified example that shows how to query a Ublox module for the current time and date. We also |
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
| /* | |
| Getting the time and date in your timezone using Ublox commands | |
| Originally Written By: davidallenmann | |
| Modified By: Ho Yun "Bobby" Chan | |
| SparkFun Electronics | |
| Date: April 16th, 2019 | |
| License: MIT. See license file for more information but you can | |
| basically do whatever you want with this code. | |
| This is a modified example that shows how to query a Ublox module for the current time and date. We also |
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
| /* | |
| Getting the time and date in your timezone using Ublox commands | |
| Originally Written By: davidallenmann | |
| Modified By: Ho Yun "Bobby" Chan | |
| SparkFun Electronics | |
| Date: April 16th, 2019 | |
| License: MIT. See license file for more information but you can | |
| basically do whatever you want with this code. | |
| This is a modified example that shows how to query a Ublox module for the current time and date. We also |
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
| /* | |
| Getting the time and date in your timezone using Ublox commands | |
| Originally Written By: davidallenmann | |
| Modified By: Ho Yun "Bobby" Chan | |
| SparkFun Electronics | |
| Date: April 16th, 2019 | |
| License: MIT. See license file for more information but you can | |
| basically do whatever you want with this code. | |
| This is a modified example that shows how to query a Ublox module for the current time and date. We also |
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
| /* | |
| Getting the time and date in your timezone using Ublox commands | |
| Originally Written By: davidallenmann | |
| Modified By: Ho Yun "Bobby" Chan | |
| SparkFun Electronics | |
| Date: April 16th, 2019 | |
| License: MIT. See license file for more information but you can | |
| basically do whatever you want with this code. | |
| This is a modified example that shows how to query a Ublox module for the current time and date. We also |
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
| /* | |
| Getting the time and date in your timezone using Ublox commands | |
| Originally Written By: davidallenmann | |
| Modified By: Ho Yun "Bobby" Chan | |
| SparkFun Electronics | |
| Date: April 16th, 2019 | |
| License: MIT. See license file for more information but you can | |
| basically do whatever you want with this code. | |
| This is a modified example that shows how to query a Ublox module for the current time and date. We also |
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
| #!/usr/bin/env python3 | |
| # | |
| #----------------------------------------------------------------------------- | |
| # 9DOF_ICM_Mod.py | |
| # | |
| # Combined Example for the Top pHAT and Qwiic ICM20948 Device. | |
| # The WS2812 LEDs will change color based on the accelerometer's | |
| # orientation. | |
| # | |
| #------------------------------------------------------------------------ |
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
| #!/usr/bin/env python3 | |
| #----------------------------------------------------------------------------- | |
| # combined1_RGB_SerLCD_ICM20948.py | |
| # | |
| # Combined example to control the RGB LED on the SerLCD | |
| # based on the accelerometer readings on the ICM20948. | |
| #------------------------------------------------------------------------ | |
| # | |
| # Written by SparkFun Electronics, March 2020 | |
| # |
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
| # ========== DESCRIPTION========== | |
| # The following code was originally written by | |
| # the Raspberry Pi Foundation. You can find this | |
| # example on GitHub. | |
| # | |
| # https://github.com/raspberrypi/pico-micropython-examples/blob/master/blink/blink.py | |
| # | |
| # Note that the GPIO for the LED was adjusted | |
| # for the Pro Micro RP2040. Make sure to use | |
| # a current limiting resistor with the LED. |
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
| # ========== DESCRIPTION========== | |
| # Example using PIO to drive a set of WS2812 LEDs. | |
| # | |
| # The following code was originally written by | |
| # the Raspberry Pi Foundation. You can find this | |
| # example on GitHub. | |
| # | |
| # https://github.com/raspberrypi/pico-micropython-examples/blob/master/pio/neopixel_ring/neopixel_ring.py | |
| # | |
| # Note that the 'NUM_LEDs' was adjusted to 1. Also |