dave mankoff

Results 6 issues of dave mankoff

I am trying to use partial update in DU mode to speed up interactions with my screen. My screen is also flipped, such that I initialize with `rotate='flip'`. I am...

Maybe there is a limitation that prevents this, but it would be super handy to know on/off events. Right now, I get odometer readings whenever the car turns off. What...

Calling `sensor.get_data_ready()` in a loop causes a slow memory leak. It gets worse if periodic measurement is enabled. ```python import time import tracemalloc from scd30_i2c import SCD30 def print_trace_diff(a, b):...

Running on a RaspberryPi Zero using i2s sound. 1) I downloaded a random wave I found (CantinaBand60.wav: https://www2.cs.uic.edu/~i101/SoundFiles/). 2) Tested it with `aplay CantinaBand60.wav`. It works fine. 3) Tried it...

This does not compile. See the logged output: ``` dave@desk:~/devel/ibbq-gateway$ idf.py menuconfig Checking Python dependencies... Python requirements from /home/dave/devel/esp-idf/requirements.txt are satisfied. Executing action: menuconfig Running cmake in directory /home/dave/devel/ibbq-gateway/build Executing...

As #1 suggests, this code currently implements argon2d. Per the argon2 website: https://www.cryptolux.org/index.php/Argon2 > Argon2 has two variants: Argon2d and Argon2i. Argon2d is faster and uses data-depending memory access, which...