klotz: esp32*

Bookmarks on this page are managed by an admin user.

0 bookmark(s) - Sort by: Date / Title ↑ / - Bookmarks from other users for this tag

  1. comp_gas = log(R_gas ohm » ) + 0.04 log(Ohm)/%rh * hum %rh » .

    log(R_gas) + 0.04 * hum
  2. do not use hub but do reboot between two successive installs
    hub will provide power (even unpowered hub) for testing but not enough for stable operation, which must be negotiated.
    eventually i stopped getting errors about pre-load etc from
    sudo kextutil -tn /Library/Extensions/SiLabsUSBDriver.kext
  3. 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)

Top of the page

First / Previous / Next / Last / Page 3 of 0 SemanticScuttle - klotz.me: Tags: esp32

About - Propulsed by SemanticScuttle