FastLED 3.9.15
Loading...
Searching...
No Matches

◆ generate_red_points()

list[Point] gen.generate_red_points ( )

Definition at line 177 of file gen.py.

177def generate_red_points() -> list[Point]:
178 starting_point = RED_ANCHOR_POINT.copy()
179 hexagon_angles = [
180 HexagonAngle.UP,
181 HexagonAngle.LEFT_UP,
182 HexagonAngle.LEFT_DOWN,
183 HexagonAngle.DOWN,
184 HexagonAngle.RIGHT_DOWN,
185 HexagonAngle.UP,
186 HexagonAngle.LEFT_UP
187 ]
188 points = gen_points(hexagon_angles, LED_PER_STRIP, starting_point, exclude=[5])
189 return points
190
191

References gen_points().

Referenced by unit_test().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: