Skip to content

Instantly share code, notes, and snippets.

View DIEGOHORVATTI's full-sized avatar
💬
Advancing by leaps and bounds

DIEGOHORVATTI

💬
Advancing by leaps and bounds
  • Planet Earth, Brazil, Santa Catarina, Florianópolis
  • 17:47 (UTC -12:00)
  • LinkedIn in/diego-horvatti
  • Instagram diegohorvatti
View GitHub Profile
@DIEGOHORVATTI
DIEGOHORVATTI / .conky
Created February 1, 2022 15:42
Minha config de conky
#CONKYRC Personalizado
#slackjeff
font Sans:size=8
background yes
use_xft yes
xftalpha 0.9
update_interval 1.0
total_run_times 0
own_window yes
@DIEGOHORVATTI
DIEGOHORVATTI / .eslintrc.json
Last active May 19, 2022 12:15
minha configuração no eslint
{
"env": {
"es2021": true,
"node": true
},
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
@DIEGOHORVATTI
DIEGOHORVATTI / rodar_motores_arduno.c++
Last active May 19, 2022 12:15
Rodar motores com arduno
#include <Arduino.h>
const int pulPin = 2;
const int dirPin = 3;
const int enPin = 4;
int x;
int delayrotacao = 500;