Created
March 26, 2016 19:28
-
-
Save warmfusion/406a06dc8e5b9eb3fe58 to your computer and use it in GitHub Desktop.
Ruby code to generate a clock face on a strip of programmable RGB leds on a raspberry pi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'ws2801' | |
WS2801.generate # generate empty strip (Would happen from alone if you just start setting colors) | |
WS2801.length 12 # default | |
WS2801.device "/dev/spidev0.0" # default | |
WS2801.strip [] | |
WS2801.autowrite true # default | |
WS2801.off | |
class ColorCalculator | |
def getColor(position, frame) | |
return { :r => frame % 127, :b => (frame % 127), :g => frame % 127 } | |
end | |
end | |
class TimeColorCalculator < ColorCalculator | |
@size | |
@hms | |
@offset | |
@power | |
LED_SPREAD = 2 | |
def initialize(size, offset=0, power=127) | |
@size = size | |
@offset = offset | |
@power = power | |
thr = Thread.new { while true; refresh; sleep 0.25; end } | |
refresh | |
end | |
def getLuminance(target, position) | |
ledDist = (target - position).abs # How far is the target from the position | |
ledDist = ledDist | |
if ledDist > @size/2 | |
ledDist = (ledDist - @size).abs # Wrap around edge | |
end | |
distRatio = ledDist / @size # as a ratio of the whole | |
# If the LED is outside our spread then, just return | |
#puts "distRatio (%s) > spread (%s)" % [ distRatio, (LED_SPREAD / @size.to_f)] | |
if distRatio > (LED_SPREAD / @size.to_f) | |
return 0 | |
end | |
# Now calculate what power to return; | |
# print "t: %f, p: %f, s: %f ; dist: %f" % (target, position, LED_SPREAD, distRatio) | |
offset = (LED_SPREAD - distRatio) / @size | |
#puts "offset %s" % offset | |
#puts "power %s" % @power | |
#puts "luminance = %s" % (@power * offset) | |
return (@power * offset).to_i | |
end | |
def getColor(position, frame) | |
position = (position + @offset) % @size | |
n = { | |
:r => getLuminance(@hms[:s], position), | |
:g => getLuminance(@hms[:m], position), | |
:b => getLuminance(@hms[:h], position) | |
} | |
# puts 'At position %s, color should be: %s' % [position, n] | |
return n | |
end | |
# Calculates the position which is closest to the | |
# hour hand in question | |
def refresh | |
time = Time.new#(2015,01,01,0,0,0) | |
h = ((time.hour + (time.min / 60.0)) / 12.0) * @size; | |
m = ((time.min + (time.sec / 60.0))/ 60.0) * @size; | |
s = ((time.sec + (time.nsec/1000000000.0) ) / 60.0) * @size; | |
@hms={ :h => h, :m => m, :s => s } | |
end | |
end | |
#calc = ColorCalculator.new | |
calc = TimeColorCalculator.new( 12 , 5) | |
x=0 | |
pixels = [] | |
while true do | |
WS2801.off | |
x = x+1 | |
((WS2801.length).to_i+1).times do |i| | |
c = calc.getColor(i, x) | |
pixels[(i*3)] = c[:r] || 0 | |
pixels[(i*3)+1] = c[:g] || 0 | |
pixels[(i*3)+2] = c[:b] || 0 | |
end | |
WS2801.strip pixels | |
WS2801.write | |
sleep 1 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment