ICT: Diary
D: 28 W: 05
| < | June 2013 | > | ||||
| Sun | Mon | Tue | Wed | Thu | Fri | Sat |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 | ||||||
[ < ]
Wednesday, 5 June 2013 [ >
]
Laser
Connected the s on the laser diode board to 5v via a 330 Omh resitor and the - to ground.
And then programmed it to blink:
/* Blink Laser */
int laser = 2;
void setup() {
pinMode(laser, OUTPUT);
}
void loop() {
digitalWrite(laser, HIGH);
delay(500);
digitalWrite(laser, LOW);
delay(500);
}
$Id: dates.htm,v 1
$Id: diary,v 1.38 2025/01/01 22:43:54 fred Exp $