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
function LookupO365Sku | |
{ | |
[CmdletBinding()] | |
param | |
( | |
[string] | |
$Sku | |
) | |
$skus = [Ordered] @{ |
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
# Time libraries | |
import rtc | |
import time | |
import alarm # for sleep and deep sleep | |
# Adafruit hts221 and supporting libraries | |
import board | |
import busio | |
import adafruit_hts221 # this library is dependent on adafruit_bus_device and adafruit_register |