Skip to content

Instantly share code, notes, and snippets.

View rje1974's full-sized avatar
🎯
Focusing

Juan Eduardo rje1974

🎯
Focusing
View GitHub Profile
@ArielNicotena
ArielNicotena / 0_Pochito.md
Last active June 8, 2021 22:37
Scripts De Sensores - Arduino UNO

##Project Pochito hola

@rje1974
rje1974 / Acelerometro
Created May 4, 2021 20:14 — forked from ArielNicotena/0_Pochito.md
Scripts De Sensores - Arduino UNO
const int xpin = A0;
const int ypin = A1;
const int zpin = A2;
void setup() {
Serial.begin(9300);
}
void loop() {