-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
663de78
commit 55a516b
Showing
3 changed files
with
102 additions
and
6 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
# SPDX-FileCopyrightText: Copyright (c) Jose D. Montoya | ||
# | ||
# SPDX-License-Identifier: MIT | ||
|
||
|
||
import time | ||
import random | ||
import board | ||
from circuitpython_uplot.uplot import Uplot, color | ||
from circuitpython_uplot.ulogging import ulogging | ||
|
||
# Setting up the display | ||
display = board.DISPLAY | ||
display.auto_refresh = False | ||
|
||
# Drawing the graph | ||
my_plot = Uplot( | ||
140, | ||
60, | ||
200, | ||
200, | ||
padding=1, | ||
show_box=True, | ||
box_color=color.WHITE, | ||
) | ||
|
||
# Setting the tick parameters | ||
my_plot.tick_params( | ||
tickx_height=4, | ||
ticky_height=4, | ||
show_ticks=True, | ||
tickcolor=color.TEAL, | ||
showtext=True, | ||
) | ||
|
||
# Creating the x and y data | ||
x = [ | ||
10, | ||
20, | ||
30, | ||
40, | ||
50, | ||
60, | ||
70, | ||
80, | ||
90, | ||
100, | ||
110, | ||
120, | ||
130, | ||
140, | ||
150, | ||
160, | ||
170, | ||
180, | ||
190, | ||
] | ||
y = [26, 22, 24, 30, 28, 35, 26, 25, 24, 23, 20, 27, 26, 33, 24, 23, 19, 27, 26] | ||
|
||
# Creating the random numbers | ||
random_numbers = [19, 22, 35, 33, 24, 26, 28, 37] | ||
|
||
|
||
display.show(my_plot) | ||
display.refresh() | ||
|
||
dist = 1 | ||
|
||
# Creating the loggraph | ||
my_loggraph = ulogging( | ||
my_plot, | ||
x[0:dist], | ||
y[0:dist], | ||
rangex=[0, 210], | ||
rangey=[0, 110], | ||
line_color=color.BLUE, | ||
ticksx=[25, 50, 75, 100, 125, 150, 175, 200], | ||
ticksy=[25, 50, 75, 100], | ||
) | ||
|
||
# Showing the loggraph | ||
while True: | ||
if dist > len(x): | ||
y.pop(0) | ||
y.append(random.choice(random_numbers)) | ||
|
||
my_loggraph.draw_points(my_plot, x[0:dist], y[0:dist]) | ||
display.refresh() | ||
dist += 1 | ||
time.sleep(0.5) |