本文整理汇总了Python中unicornhat.set_pixel函数的典型用法代码示例。如果您正苦于以下问题:Python set_pixel函数的具体用法?Python set_pixel怎么用?Python set_pixel使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了set_pixel函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: go
def go():
unicorn.brightness(1)
unicorn.rotation(90)
wrd_rgb = [[154, 173, 154], [0, 255, 0], [0, 200, 0], [0, 162, 0], [0, 145, 0], [0, 96, 0], [0, 74, 0], [0, 0, 0,]]
clock = 0
blue_pilled_population = [[randint(0,7), 7]]
t_end = time.time() + 10
while time.time() < t_end:
for person in blue_pilled_population:
y = person[1]
for rgb in wrd_rgb:
if (y <= 7) and (y >= 0):
unicorn.set_pixel(person[0], y, rgb[0], rgb[1], rgb[2])
y += 1
person[1] -= 1
unicorn.show()
time.sleep(0.1)
clock += 1
if clock % 5 == 0:
blue_pilled_population.append([randint(0,7), 7])
if clock % 7 == 0:
blue_pilled_population.append([randint(0,7), 7])
while len(blue_pilled_population) > 100:
blue_pilled_population.pop(0)
示例2: option_2
def option_2():###Select a website to create the light show
your_webiste_choice = raw_input("Please enter the web address")
final_address = "http://%s" %(your_webiste_choice)
print "finding", final_address
website = urllib2.urlopen(final_address )
##print website.read()
sentence = website.read()
print sentence
###Checks the letters in the website, then works out the co- ordinates###
for letter in sentence:
index = ord(letter)-65
#print index ### remove when complete###
if index > 0:
x = int(index/8.0)
#print x ### remove when complete###
#x = x - 4
y = int(index%8)
#print (x, y)
UH.clear
UH.brightness(0.2)
UH.set_pixel(y, x, 0, 255, 0)
UH.set_pixel(x, y, 0, 255, 0)
UH.show()
time.sleep(0.02)
UH.clear()
elif index <= 0:
random_sparkle()
示例3: set_build_success
def set_build_success(self):
self.logger.debug("Last build worked !")
for y in range(8):
for x in range(8):
UH.set_pixel(x, y, 0, 255, 0)
UH.show()
time.sleep(0.05)
示例4: uh_show_matrix
def uh_show_matrix(mat, pause = .075):
for y in range(len(mat)):
for x in range(len(mat[0])):
uh.set_pixel(x, y, mat[x][y][0], mat[x][y][1], mat[x][y][2])
uh.show()
time.sleep(pause)
示例5: fill
def fill(r=0,g=255,b=0):
for x in range(8):
for y in range(8):
unicorn.set_pixel(8-x-1, 8-y-1, r, g, b)
unicorn.show()
time.sleep(0.05)
time.sleep(2)
示例6: drawpet
def drawpet(pet):
for y in range(8):
for x in range(8):
#set pixel with color
r, g, b = pet[y][x]
unicorn.set_pixel(x,y,r,g,b)
unicorn.show()
示例7: showTime
def showTime(time,col,r,g,b):
binary = '{0:08b}'.format(time)
for y in range(8):
if binary[y] == '1':
uni.set_pixel(col,y,r,g,b)
else:
uni.set_pixel(col,y,0,0,0)
示例8: go
def go():
effects = [tunnel, rainbow_search, checker, swirl]
unicorn.brightness(1)
step = 0
t_end = time.time() + 10
while time.time() < t_end:
for i in range(500):
for y in range(8):
for x in range(8):
r, g, b = effects[0](x, y, step)
if i > 400:
r2, g2, b2 = effects[-1](x, y, step)
ratio = (500.00 - i) / 100.0
r = r * ratio + r2 * (1.0 - ratio)
g = g * ratio + g2 * (1.0 - ratio)
b = b * ratio + b2 * (1.0 - ratio)
r = int(max(0, min(255, r)))
g = int(max(0, min(255, g)))
b = int(max(0, min(255, b)))
unicorn.set_pixel(x, y, r, g, b)
step += 1
unicorn.show()
time.sleep(0.01)
effect = effects.pop()
effects.insert(0, effect)
示例9: draw_heart
def draw_heart(hue, brightness):
for x, y in pixels_to_light:
color = colorsys.hsv_to_rgb(hue, 1, brightness)
color = [int(c * 255) for c in color]
r, g, b = color
unicorn.set_pixel(x, y, r, g, b)
unicorn.show()
示例10: display_binary
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[0], color[1], color[2])
else:
hat.set_pixel(x, row, 0, 0, 0)
示例11: writePixel
def writePixel(pixel):
#try:
#GPIO.setup(int(pin), GPIO.IN)
#if GPIO.input(int(pin)) == True:
# response = "Pin number " + pin + " is high!"
#else:
# response = "Pin number " + pin + " is low!"
#except:
#response = "There was an error reading pin " + pin + "."
color = int(pixel)
for i in range(0,8):
UH.set_pixel(0,i,color,color,color)
UH.show()
response="All correct"
now = datetime.datetime.now()
timeString = now.strftime("%Y-%m-%d %H:%M")
templateData = {
'title' : 'Status of Pixel' + str(pixel),
'time': timeString,
'response' : response
}
return render_template('main.html', **templateData)
示例12: effect
def effect():
# trigger effect
for i in range(steps_per * 8):
for y in range(8):
for x in range(8):
r, g, b = background(x, y, i)
r = int(max(0, min(255, r)))
g = int(max(0, min(255, g)))
b = int(max(0, min(255, b)))
unicorn.set_pixel(x, y, r, g, b)
unicorn.show()
time.sleep(0.01)
for i in range(200):
v = (math.sin(i / 6.0) + 1.0) / 2.0
for y in range(8):
for x in range(8):
r = 0
b = 0
g = 100
g *= tick_mask[y][x]
g *= v
r = int(max(0, min(255, r)))
g = int(max(0, min(255, g)))
b = int(max(0, min(255, b)))
unicorn.set_pixel(x, y, r, g, b)
unicorn.show()
time.sleep(0.02)
示例13: display_matrix
def display_matrix(max_x, max_y, text=False, r=255, g=255, b=255):
"""
Display the matrix, either on the unicorn or on the stdout
:param max_x:
:param max_y:
:param text: If True, display on stdout instead of unicornhat. For debugging
"""
if text:
for x in range(max_x):
for y in range(max_y):
coordinate_tuple = (x, y)
if LifeCell.matrix[coordinate_tuple].current_state == 'alive':
print '*',
else:
print '.',
print
print
else:
for x in range(max_x):
for y in range(max_y):
coordinate_tuple = (x, y)
if LifeCell.matrix[coordinate_tuple].current_state == 'alive':
unicorn.set_pixel(x, y, r, g, b)
else:
unicorn.set_pixel(x, y, 0, 0, 0)
unicorn.show()
示例14: random_pixel
def random_pixel(color_function):
""" Generate a randomly positioned pixel with the color returned
by color_function.
Args:
color_function (func): Should return a (R,G,B) color value.
"""
color = color_function()
def random_position():
""" Get the position of a random pixel bound by
function_pos. """
x = randint(0, function_pos[load_sparkles])
y = randint(0, (height-1))
return (x,y)
selected_pixel = random_position()
''' Aesthetic: If the randomly generated pixel is currently lit,
turn it off and try with a new pixel. Also works as sort of a
population control on how many pixels will be lit. '''
while sum(unicorn.get_pixel(*selected_pixel)) > 0:
unicorn.set_pixel(*(selected_pixel + (0, 0, 0)))
selected_pixel = random_position()
unicorn.set_pixel(*(selected_pixel + color))
return
示例15: uni_show
def uni_show(prev_x, prev_y):
a = np.random.rand(1)
b = np.random.rand(1)
c = np.random.rand(1)
rgb_on = colorsys.hsv_to_rgb(a, b, c)
rgb_off = colorsys.hsv_to_rgb(0.5, 0.5, 0.1)
r_on = int(rgb_on[0]*255.0)
g_on = int(rgb_on[1]*255.0)
b_on = int(rgb_on[2]*255.0)
r_off = int(rgb_off[0]*255.0)
g_off = int(rgb_off[1]*255.0)
b_off = int(rgb_off[2]*255.0)
a = np.random.rand(1)
x = int(a[0] * 8)-1
b = np.random.rand(1)
y = int(b[0] * 8)-1
#print x, y
if x < 0:
x = 0
if y < 0:
y = 0
unicorn.set_pixel(x, y, r_on, g_on, b_on)
unicorn.set_pixel(prev_x, prev_y, r_off, g_off, b_off)
unicorn.show()
return x, y