Skip to content

Instantly share code, notes, and snippets.

View vifeng's full-sized avatar

ViFeng vifeng

  • Paris
View GitHub Profile
@vifeng
vifeng / gist:084a18fd6c96b23b8adad6866c1afda6
Created December 17, 2023 08:47
Day11-activity5-SeveralAttemps.py
import time
from machine import Pin
# Set up column pins (inputs)
key1 = Pin(11, Pin.IN, Pin.PULL_DOWN)
key2 = Pin(10, Pin.IN, Pin.PULL_DOWN)
key3 = Pin(13, Pin.IN, Pin.PULL_DOWN)
key4 = Pin(12, Pin.IN, Pin.PULL_DOWN)
@vifeng
vifeng / git-command.md
Created October 11, 2016 09:32 — forked from aquelito/git-command.md
GIT - Ligne de commande principale

Github

Configuration

Identity Name

$ git config --global user.name "aquelito"