Difference between revisions of "Beacon2"

From Hackstrich
(I was told there would be no math!)
(More modes.)
Line 53: Line 53:
 
  x  x  x  x  x  x
 
  x  x  x  x  x  x
 
</pre>
 
</pre>
 +
# (1 on): Quick flashes of individual random LEDs in random colours.
 +
# (? on): Spaceshipmode: Center row mostly solid one color, above and below row of contrasting color in 101010 or 100100100 or 11001100 type pattern.
 +
  
 
[[Category:Current Projects]]
 
[[Category:Current Projects]]

Revision as of 18:22, 11 July 2010

Beacon2 is a lighted beacon that will be used on top of a flag pole at Burning Man 2010, to help us locate our camp (and be blinkie and flashy).

Project Status

Basic design work and BOM assembly started.

Design Overview/Ideas

  • Enclosure will be a CD spindle likely, as it's a good shape and easy to work with.
  • Each layer board will have 10 LEDs around the perimeter (every 36deg).
  • Multiple layer boards will stack together to add a vertical component to the image.
  • Boards will communicate via I2C.
  • The whole assembly will be solar charged, using NiMH batteries.
    • Needs to intelligently charge, not like the garden lights do (trickle).
    • Needs to last all night! Last year's beacon was mostly out by 0200.
  • Boards will use the ATmega644P/V chip.
    • Means we can use the Arduino/Sanguino bootloader.

Power Management

  • 2500mAh 4.8v pack for power (4x Sanyo 2700mAh AAs)
    • 12Wh of power at a full charge
  • Charged using a 2.5W SparkFun solar panel, Voc = 9.25Voc, Isc = 310mA
    • Assuming VMAX at PMAX = 80% VOC, then VMAX = 7.4V
    • Solar cell puts out 2.5W in peak sun
    • ~7 hours of peak sun per day on the playa
    • Solar can (in ideal conditions, with 100% efficiency in conversion/charging) put 7*2.5=17.5W of power into the batteries per day
    • Charge timer needs to be set for 8 hours (want to take advantage of extra peak sunlight in the event we get it!)
    • Charge current needs to be set for 310mA
    • Charge temperature limit needs to be set for 40C (NiMH chemistry can only charge safely up to this limit)
  • Needs to run from 8pm-7am or so (11 hours)
    • Given 12Wh of power in the batteries, we can draw 0.916W average from the batteries
    • At 4.8V we need to keep average draw to 190mA
  • LT3652 solar peaking charger IC will be used to charge the batteries
    • CTIMER = TEOC * 2.27 * 10-7 * 1000000 (hours / μF) ∴ CTIMER = 8 * 2.27 * 10-7 * 1000000 = 1.816μF

LED Program Ideas

  1. (5 on) Offset LEDs in each layer rotate around the axis with random colour choice for each vertical frame:
 x    x    x    x    x    x    x    x    x
  x    x    x    x    x    x    x    x    x
   x    x    x    x    x    x    x    x    x
    x    x    x    x    x    x    x    x    x
     x    x    x    x    x    x    x    x    x
  1. (10 on): Illuminate each row and oscillate up and down the vertical axis with a random colour for each frame
  2. (5 on): Vertical columns of LEDs rotating around the axis with random colour for each frame
  3. (5 on): Vertical columns of LEDs rotating around the axis with random colour for each LED of each frame
  4. (10 on): "Rain down" LEDs from top to bottom. In each frame any unlit LED immediately below an illuminated LED will become lit and the above LED will go out. When the sequence reaches the bottom they will stay illuminated for a random time (1-5 seconds) then go out. The next step for the LED will be to go to the top layer and repeat.
  5. (5 on): Rotate around the axis a zig-zag pattern, pick a random colour at the start of the sequence and maintain throughout:
 x  x  x  x  x  x
  x  x  x  x  x  x
 x  x  x  x  x  x
  x  x  x  x  x  x
 x  x  x  x  x  x
  1. (1 on): Quick flashes of individual random LEDs in random colours.
  2. (? on): Spaceshipmode: Center row mostly solid one color, above and below row of contrasting color in 101010 or 100100100 or 11001100 type pattern.