I hereby claim:
- I am emilioramirez on github.
- I am emilioramirez (https://keybase.io/emilioramirez) on keybase.
- I have a public key whose fingerprint is 6C4E 4FA9 C249 FA7A 92BE 90B6 47AC 64D2 7879 087C
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# Arduino mini game using display lcd 16x2 and pulser | |
#include <LiquidCrystal.h> | |
LiquidCrystal lcd(7, 8, 9, 10, 11 , 12); | |
char BLOQUE; | |
char PERSONAJE; | |
int LINEA_ARRIBA = 0; | |
int LINEA_ABAJO = 1; | |
int BOTON_PIN = 4; | |
int SCORE = -1; |
""" | |
Based on the python doc https://docs.python.org/3/library/secrets.html | |
""" | |
import argparse | |
import secrets | |
import string | |
def generate_password(password_length): | |
alphabet = string.ascii_letters + string.digits |