The Adafruit Feather Bluefruit Sense takes the popular Feather nRF52840 Express and adds a comprehensive set of sensors, making it an excellent wireless sensor platform with Bluetooth Low Energy, native USB support, and Arduino/CircuitPython compatibility. It features environmental and motion sensing capabilities including 9-DoF motion sensors, proximity/light/color/gesture sensor, PDM microphone, humidity sensor, and barometric pressure sensor.
import EasyCrypt
keystring = "SixteenByteKey!!"
inpstring = "Some super secret string, that I don't want you to see."
# This is the initialisation vector/nonce. I generated it with the below code. As you
# will need it to decrypt later on, you might want to store it and not just generate it each time
# I just generated it like this and printed this one out to store it.
#
# import os
# from binascii import hexlify, unhexlify
# ivstring = hexlify(os.urandom(16)).decode()
ivstring = "aba0a3bde34a03487eda3ec96d5736a8"
crypted = EasyCrypt.encrypt_string(keystring, inpstring, ivstring)
print(crypted)
decrypted = EasyCrypt.decrypt_string(keystring, crypted, ivstring)
print(decrypted)
CircuitPython 8.0.0 introduces support for environment variables. Environment variables are commonly used to store “secrets” such as Wi-Fi passwords and API keys. This method does not make them secure. It only separates them from the code.
CircuitPython uses a file called settings.toml at the drive root (no folder) as the environment. User code can access the values from the file using os.getenv(). It is recommended to save any values used repeatedly in a variable because os.getenv() will parse the settings.toml file contents on every access.
A USB key with a Trinket M0 heart and four RGB NeoPixels for customizable glow.