Merge branch 'master' of github.com:brmlab/brmbar

This commit is contained in:
Petr Baudis 2012-08-28 20:06:56 +02:00
commit 540167bfb5
4 changed files with 67 additions and 0 deletions

9
brmtender/.gitignore vendored Normal file
View file

@ -0,0 +1,9 @@
_*
*.cmd
*.net
*.backup
*.ps
*.eps
*~
*-
*#

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View file

@ -0,0 +1,38 @@
v 20110115 2
C 48800 46000 1 0 0 ULN2003-1.sym
{
T 50350 49640 5 10 0 0 0 0 1
device=ULN2003
T 50350 49440 5 10 0 0 0 0 1
footprint=DIP16
T 50500 49400 5 10 1 1 0 6 1
refdes=U?
}
C 48400 44000 1 0 0 gnd-1.sym
C 51000 46200 1 0 0 3.3V-plus-1.sym
C 47500 44500 1 0 0 darlington_NPN-1.sym
{
T 48900 45600 5 10 0 0 0 0 1
device=darlington, NPN
T 48900 45200 5 10 0 0 0 0 1
footprint=TO92
T 48000 44670 5 10 1 1 0 0 1
refdes=TIP132
}
N 48500 46200 48800 46200 4
N 48500 44300 48500 44500 4
T 45500 45300 9 10 1 0 0 0 1
Arduino common PWM
C 42700 48200 1 0 0 pot-bourns.sym
{
T 43500 49100 5 10 0 0 0 0 1
device=VARIABLE_RESISTOR
T 43300 48600 5 10 1 1 0 0 1
refdes=R?
}
C 42600 48000 1 0 0 gnd-1.sym
T 42600 49000 9 10 1 0 0 0 1
Arduino analog IN
T 43900 48300 9 10 1 0 0 0 1
Arduino AREF
N 51200 46200 50800 46200 4

20
brmtender/brmtender.ino Normal file
View file

@ -0,0 +1,20 @@
/*
BrmTender
System for dispensing and mixing (non-)alcoholic beverages
*/
void setup() {
Serial.begin(9600);
pinMode(3, OUTPUT);
pinMode(12, OUTPUT);
digitalWrite(3, HIGH);
}
void loop() {
while(Serial.available() == 0) Serial.read();
digitalWrite(12, HIGH); // set the LED on
delay(3000); // w
ait for a second
digitalWrite(12, LOW); // set the LED off
while(Serial.available() > 0) Serial.read();
}