Skip to content

Commit

Permalink
Added Version ID to code.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikefly123 committed Jul 26, 2024
1 parent 14113e0 commit 359fd17
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions CircuitPy/FC_Board/code.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@
# This is where the magic happens!
# This file is executed on every boot (including wake-boot from deepsleep)
# Created By: Michael Pham

"""
Built for the PySquared FC Board
Version: 1.0.1 (Beta)
Published: July 26, 2024
"""

import time

print("Hello World!")
print("="*50)
print("PySquared FC Board Circuit Python Software Version: 1.0.1 (Beta)")
print("Published: July 26, 2024")
print("="*50)

try:
for i in range(10):
Expand Down

0 comments on commit 359fd17

Please sign in to comment.