Skip to content

Commit

Permalink
Merge pull request #106 from jozefizso/patch-1
Browse files Browse the repository at this point in the history
Fix typo in sample code for `display` module
  • Loading branch information
renzenicolai authored Mar 24, 2024
2 parents 988d695 + 1be66ad commit 9885a4d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ display.flush() # Write the contents of the buffer to the display
```
import display, time
display.drawFill(display.BLACK) # Fill the screen with black before drawing the line
displau.flush() # Write the color to the screen before drawing the line
display.flush() # Write the color to the screen before drawing the line
for i in range(80): # Loop for the X axis
display.drawPixel(i, 1, 0x00FF00) # Set 1 pixel on the X axis i, and the Y axis 1 to 100% green
display.flush() # Write the pixel output to the screen
Expand Down

0 comments on commit 9885a4d

Please sign in to comment.