Tags: rp2040*

0 bookmark(s) - Sort by: Date ↓ / Title /

  1. Glowtape is a unique DIY wristwatch by Henner Zeller that uses glow-in-the-dark tape and an RP2040 microcontroller to display the time.
  2. Pete Warden shares his experience and knowledge about the memory layout of the Raspberry Pi Pico board, specifically the RP2040 microcontroller. He encountered baffling bugs while updating TensorFlow Lite Micro and traced them to poor understanding of the memory layout. The article provides detailed insights into the physical and RAM layouts, stack behavior, and potential pitfalls.
  3. Explore Seeed Studio's XIAO series, featuring tiny, powerful development boards. Choose from various models like XIAO SAMD21, XIAO ESP32C3, and more. Accessories include sensors, displays, and starter kits. Shop now for discounts and free shipping.
  4. Repository for PicoUSB - RP2040 based, easy to use and learn - bad USB
  5. Matt Evans developed the project over an undisclosed amount of time. He was inspired by a conversation about building a desktop GUI for the Raspberry Pi Pico’s RP2040 MCU. Evans’s goal was to bring the Macintosh 128K to life to run the originally bundled software and the all-important Missile Command.
  6. 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)
  7. 2023-11-27 Tags: , , , , , by klotz

Top of the page

First / Previous / Next / Last / Page 1 of 0 SemanticScuttle - klotz.me: tagged with "rp2040"

About - Propulsed by SemanticScuttle