Skip to content

Instantly share code, notes, and snippets.

View ankovsh's full-sized avatar

Anastasya Kovsh ankovsh

View GitHub Profile
@ankovsh
ankovsh / grasshopper.ino
Last active May 15, 2016 19:54
Лазерная арфа на базе Arduino
#include <Stepper.h>
int potentiometerPin = 1;
int LDRPin = 0;
int motorPin1 = 2;
int motorPin2 = 3;
int motorPin3 = 4;
int motorPin4 = 5;
@ankovsh
ankovsh / butterfly.ino
Created December 22, 2015 19:23
RGB-ночник на базе Arduino
#include <IRremote.h>
const int rTriggerPin = 8;
const int rEchoPin = 7;
const int gTriggerPin = 10;
const int gEchoPin = 9;
const int bTriggerPin = 12;
const int bEchoPin = 11;
const int receiverPin = 4;