Skip to content

Commit b3c3e00

Browse files
committed
Update example file to parameter based example
1 parent 25c183a commit b3c3e00

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

examples/displayio_cartesion_fillarea.py

+16-10
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,25 @@
1818
# for display chip driver and pinout you have (e.g. ILI9341)
1919

2020
# Generate data - here we'll make a normal distribution
21-
X_LOWER_BOUND = 0
22-
X_UPPER_BOUND = 10
2321
raw_data = []
2422
data = []
23+
MAX_DICE_SIDE = 20
24+
NUMBER_OF_DICE = 10
25+
NUMBER_OF_ROLLS = 500
2526

26-
for _ in range(100):
27-
data_point = int(10 * random.random(X_LOWER_BOUND, X_UPPER_BOUND + 1))
28-
raw_data.append(data_point)
27+
for _ in range(NUMBER_OF_ROLLS):
28+
# Simulate equivalent dice rolls
29+
sum_random = 0
30+
for _ in range(NUMBER_OF_DICE):
31+
sum_random += random.uniform(1, MAX_DICE_SIDE)
32+
average_random = sum_random // NUMBER_OF_DICE
33+
raw_data.append(average_random)
2934

35+
# Calculate the number of each roll result and pair with itself
3036
y_upper_bound = 0
31-
for value in range(len(X_UPPER_BOUND + 1)):
32-
value_count = raw_data.count(value)
33-
data.append(value_count)
37+
for value in range(MAX_DICE_SIDE + 1):
38+
value_count = raw_data.count(value) / 10
39+
data.append((value, value_count))
3440
y_upper_bound = max(y_upper_bound, value_count)
3541

3642
# pybadge display: 160x128
@@ -41,7 +47,7 @@
4147
y=2, # y plane position
4248
width=135, # display width
4349
height=105, # display height
44-
xrange=(X_LOWER_BOUND, X_UPPER_BOUND), # x range
50+
xrange=(0, MAX_DICE_SIDE), # x range
4551
yrange=(0, y_upper_bound), # y range
4652
fill_area=True,
4753
)
@@ -54,7 +60,7 @@
5460

5561
for x, y in data:
5662
my_plane.add_plot_line(x, y)
57-
time.sleep(0.5)
63+
time.sleep(0.1)
5864

5965
while True:
6066
pass

0 commit comments

Comments
 (0)