forked from adafruit/Adafruit_CircuitPython_LED_Animation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsparklepulse.py
94 lines (73 loc) · 2.69 KB
/
sparklepulse.py
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# SPDX-FileCopyrightText: 2020 Kattni Rembor for Adafruit Industries
#
# SPDX-License-Identifier: MIT
"""
`adafruit_led_animation.animation.sparklepulse`
================================================================================
Sparkle-pulse animation for CircuitPython helper library for LED animations.
* Author(s): dmolavi
Implementation Notes
--------------------
**Hardware:**
* `Adafruit NeoPixels <https://www.adafruit.com/category/168>`_
* `Adafruit DotStars <https://www.adafruit.com/category/885>`_
**Software and Dependencies:**
* Adafruit CircuitPython firmware for the supported boards:
https://circuitpython.org/downloads
"""
from adafruit_led_animation.animation.sparkle import Sparkle
from adafruit_led_animation.pulse_generator import pulse_generator
class SparklePulse(Sparkle):
"""
Combination of the Sparkle and Pulse animations.
:param pixel_object: The initialised LED object.
:param int speed: Animation refresh rate in seconds, e.g. ``0.1``.
:param color: Animation color in ``(r, g, b)`` tuple, or ``0x000000`` hex format.
:param period: Period to pulse the LEDs over. Default 5.
:param breath: Duration to hold minimum and maximum intensity. Default 0.
:param max_intensity: The maximum intensity to pulse, between 0 and 1.0. Default 1.
:param min_intensity: The minimum intensity to pulse, between 0 and 1.0. Default 0.
"""
# pylint: disable=too-many-arguments
def __init__(
self,
pixel_object,
speed,
color,
period=5,
breath=0,
max_intensity=1,
min_intensity=0,
name=None,
):
self._period = period
self.breath = breath
self.min_intensity = min_intensity
self.max_intensity = max_intensity
dotstar = len(pixel_object) == 4 and isinstance(pixel_object[0][-1], float)
super().__init__(
pixel_object, speed=speed, color=color, num_sparkles=1, name=name
)
self._generator = pulse_generator(self._period, self, dotstar_pwm=dotstar)
def _set_color(self, color):
self._color = color
def draw(self):
self._sparkle_color = next(self._generator)
super().draw()
def after_draw(self):
self.show()
@property
def period(self):
"""
Period to pulse the LEDs over in seconds
"""
return self._period
@period.setter
def period(self, new_value):
self._period = new_value
self.reset()
def reset(self):
dotstar = len(self.pixel_object) == 4 and isinstance(
self.pixel_object[0][-1], float
)
self._generator = pulse_generator(self._period, self, dotstar_pwm=dotstar)