Skip to content

Commit 39b7ec9

Browse files
Fixed script and content
1 parent 9af2e0a commit 39b7ec9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

content/micropython/02.micropython-course/course/03.python-cc/python-cc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Now take a look at what happens after each statement. Notice the empty space jus
107107
Anything inside of this indentation will execute if the statement is met, and this is a fundamental principle that is used in every Python program that you write!
108108

109109
Now since we already defined `x` to be `5+5`, the terminal will of course print:
110-
- `"x is larger than 10"`
110+
- `"x is exactly 10"`
111111

112112
## While Loop
113113

content/micropython/02.micropython-course/course/07.internet-of-things/01.internet-of-things.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ TIMESTAMP = 2208988800
193193
# Create new socket
194194
client = usocket.socket(usocket.AF_INET, usocket.SOCK_DGRAM)
195195
client.bind(("", 8080))
196-
#client.settimeout(3.0)
196+
client.settimeout(3.0)
197197

198198
# Get addr info via DNS
199199
addr = usocket.getaddrinfo("pool.ntp.org", 123)[0][4]

0 commit comments

Comments
 (0)