Last active
July 25, 2020 17:05
-
-
Save danya02/82cb61617ad590c90f5e to your computer and use it in GitHub Desktop.
Binary clock using a RPi and a Sense HAT.
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
#!/usr/bin/env python | |
from sense_hat import SenseHat | |
import time, datetime | |
hat = SenseHat() | |
year_color = (0, 255, 0) | |
month_color = (0, 0, 255) | |
day_color = (255, 0, 0) | |
hour_color = (0, 255, 0) | |
minute_color = (0, 0, 255) | |
second_color = (255, 0, 0) | |
hundredths_color = (127, 127, 0) | |
off = (0, 0, 0) | |
hat.clear() | |
def display_binary(value, row, color): | |
binary_str = "{0:8b}".format(value) | |
for x in range(0, 8): | |
if binary_str[x] == '1': | |
hat.set_pixel(x, row, color) | |
else: | |
hat.set_pixel(x, row, off) | |
while True: | |
t = datetime.datetime.now() | |
display_binary(t.year % 100, 0, year_color) | |
display_binary(t.month, 1, month_color) | |
display_binary(t.day, 2, day_color) | |
display_binary(t.hour, 3, hour_color) | |
display_binary(t.minute, 4, minute_color) | |
display_binary(t.second, 5, second_color) | |
display_binary(t.microsecond / 10000, 6, hundredths_color) | |
time.sleep(0.0001) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is probably because you're running this with Python 3, where
int / int == float
. Back in 2016, the default executable forpython
was v2.7, so this issue didn't arise.