Line: 1 to 1 | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Course on Internet of Things Exercises Session 1: | |||||||||||||
Line: 99 to 99 | |||||||||||||
| |||||||||||||
Changed: | |||||||||||||
< < |
| ||||||||||||
> > | ![]() | ||||||||||||
Add these series to your class and try. Write a test script exercising the different methods.
Please also have a look at the Wikipedia page on number series: https://en.wikipedia.org/wiki/Series_(mathematics)![]() | |||||||||||||
Line: 138 to 139 | |||||||||||||
| |||||||||||||
Changed: | |||||||||||||
< < |
| ||||||||||||
> > |
| ||||||||||||
| |||||||||||||
Changed: | |||||||||||||
< < |
| ||||||||||||
> > |
| ||||||||||||
| |||||||||||||
Added: | |||||||||||||
> > |
|
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Course on Internet of Things Exercises Session 1: | ||||||||
Line: 99 to 99 | ||||||||
| ||||||||
Changed: | ||||||||
< < |
| |||||||
> > |
| |||||||
Add these series to your class and try. Write a test script exercising the different methods. | ||||||||
Added: | ||||||||
> > | Please also have a look at the Wikipedia page on number series: https://en.wikipedia.org/wiki/Series_(mathematics)![]() | |||||||
In order to make this exercise run on the ESP32 you must first upload your mathSeries.py module implementing the MathSeries class into the file system of the ESP32. Create a directory called lib on the ESP32 file system and put your module there: ampy mkdir /lib | ||||||||
Line: 144 to 146 | ||||||||
| ||||||||
Changed: | ||||||||
< < |
| |||||||
> > |
|
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Course on Internet of Things Exercises Session 1: |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Course on Internet of Things Exercises Session 1: | ||||||||
Line: 12 to 12 | ||||||||
Using REPL:
| ||||||||
Changed: | ||||||||
< < |
| |||||||
> > |
| |||||||
Exercise 2: A simple calculator |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Course on Internet of Things Exercises Session 1: | ||||||||
Line: 118 to 118 | ||||||||
When running on a PC you may want to plot the series as well. If you don't know how to plot data in Python, you will find all the information needed here: https://matplotlib.org/3.2.1/index.html ![]() | ||||||||
Added: | ||||||||
> > | Here is the exercise sheet in odt format: https://afnog.iotworkshop.africa/pub/IoT_Course_English/REPLAndStandardPythonProgramming/exercise_1.odt | |||||||
-- ![]() Comments | ||||||||
Line: 139 to 143 | ||||||||
| ||||||||
Added: | ||||||||
> > |
|
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Course on Internet of Things Exercises Session 1: | ||||||||
Line: 46 to 46 | ||||||||
https://docs.micropython.org/en/latest/library/ure.html![]() | ||||||||
Added: | ||||||||
> > | A float is defined as follows:
| |||||||
Try your parser on this input:
|
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Course on Internet of Things Exercises Session 1: | ||||||||
Line: 42 to 42 | ||||||||
Bonus points: Writing a parser for user input is rather easy if the numbers and operator are separated by spaces (have a look at the split method of strings). It is quite a bit more tricky if you allow entering calculations without spaces between the operands and the operator. Can you write a parser accomplishing this? | ||||||||
Added: | ||||||||
> > | Hint: A very elegant solution to this is the use of regular expressions and Python provides a module helping you with this:
https://docs.micropython.org/en/latest/library/ure.html![]() | |||||||
Try your parser on this input:
| ||||||||
Line: 52 to 56 | ||||||||
| ||||||||
Added: | ||||||||
> > |
| |||||||
Try also several spaces in between operands and operator. https://afnog.iotworkshop.africa/pub/IoT_Course_English/REPLAndStandardPythonProgramming/calculatorV3.py.txt |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Course on Internet of Things Exercises Session 1: | ||||||||
Line: 26 to 26 | ||||||||
| ||||||||
Added: | ||||||||
> > | https://afnog.iotworkshop.africa/pub/IoT_Course_English/REPLAndStandardPythonProgramming/calculatorV1.py.txt | |||||||
Improve this program asking the user to enter 2 real numbers (floats) separated by a space. This is how it should look like:
![]() | ||||||||
Line: 36 to 38 | ||||||||
when the user mistypes and enters something that is not a real number, can you capture the error and simply ask the user to repeat his input, until you get 2 correct floating point numbers? | ||||||||
Added: | ||||||||
> > | https://afnog.iotworkshop.africa/pub/IoT_Course_English/REPLAndStandardPythonProgramming/calculatorV2.py.txt | |||||||
Bonus points: Writing a parser for user input is rather easy if the numbers and operator are separated by spaces (have a look at the split method of strings). It is quite a bit more tricky if you allow entering calculations without spaces between the operands and the operator. Can you write a parser accomplishing this? Try your parser on this input: | ||||||||
Line: 49 to 53 | ||||||||
| ||||||||
Added: | ||||||||
> > | https://afnog.iotworkshop.africa/pub/IoT_Course_English/REPLAndStandardPythonProgramming/calculatorV3.py.txt | |||||||
Exercise 3: ConditionsLike in exercise2, start with 2 numbers a,b with values 5 and 7. In your program check which of the 2 numbers is bigger and print the result. | ||||||||
Line: 116 to 122 | ||||||||
| ||||||||
Added: | ||||||||
> > |
|
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Course on Internet of Things Exercises Session 1: | ||||||||
Line: 32 to 32 | ||||||||
If this happens: | ||||||||
Changed: | ||||||||
< < | ![]() | |||||||
> > | ![]() | |||||||
Changed: | ||||||||
< < | when the user mistypes and enters something that is not an integer, can you capture the error and simply ask the user to repeat his input, until you get 2 correct integer numbers? | |||||||
> > | when the user mistypes and enters something that is not a real number, can you capture the error and simply ask the user to repeat his input, until you get 2 correct floating point numbers? | |||||||
Bonus points: Writing a parser for user input is rather easy if the numbers and operator are separated by spaces (have a look at the split method of strings). It is quite a bit more tricky if you allow entering calculations without spaces between the operands and the operator. Can you write a parser accomplishing this? | ||||||||
Line: 71 to 71 | ||||||||
Write a script that asks the user for an angle in degrees. Calculate the sine of this angle.
Exercise 6: Classes | ||||||||
Changed: | ||||||||
< < | Write a Python class with methods calculation mathematical number series. These series should be calculated: | |||||||
> > | Write a Python class with methods calculating mathematical number series. These series should be calculated: | |||||||
| ||||||||
Line: 115 to 115 | ||||||||
| ||||||||
Added: | ||||||||
> > |
|
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Course on Internet of Things Exercises Session 1: | ||||||||
Line: 47 to 47 | ||||||||
| ||||||||
Added: | ||||||||
> > |
| |||||||
Try also several spaces in between operands and operator.
Exercise 3: Conditions | ||||||||
Changed: | ||||||||
< < | Like in exercise2, start with 2 numbers a,b with values 5 and 3. In your program check which of the 2 numbers is bigger and print the result. | |||||||
> > | Like in exercise2, start with 2 numbers a,b with values 5 and 7. In your program check which of the 2 numbers is bigger and print the result. | |||||||
Then improve the program asking the user for 2 integer numbers. Make sure he enters 2 correct numbers and capture possible errors. This is a typical output: | ||||||||
Line: 65 to 66 | ||||||||
| ||||||||
Changed: | ||||||||
< < | Exercise 5: Some maths: Calculate the sine function | |||||||
> > | Exercise 5: A bit of Mathematics: Calculate the sine function | |||||||
Write a script that asks the user for an angle in degrees. Calculate the sine of this angle.
Exercise 6: Classes | ||||||||
Line: 81 to 82 | ||||||||
| ||||||||
Changed: | ||||||||
< < | When running on a PC you may want to plot the series as well. | |||||||
> > | In order to make this exercise run on the ESP32 you must first upload your mathSeries.py module implementing the MathSeries class into the file system of the ESP32. Create a directory called lib on the ESP32 file system and put your module there:
ampy mkdir /lib
ampy put mathSeries.py /lib/mathSeries.py
Once this is done, go to the REPL window of thonny and
import mathSeries
You can now create an instance of the MathSeries class:
series = mathSeries.MathSeries()
When running on a PC you may want to plot the series as well. If you don't know how to plot data in Python, you will find all the information needed here: https://matplotlib.org/3.2.1/index.html ![]() | |||||||
-- ![]() |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Course on Internet of Things Exercises Session 1: | ||||||||
Line: 24 to 24 | ||||||||
| ||||||||
Changed: | ||||||||
< < | Which result do you observe for division? Can you correct? | |||||||
> > | If you use integer format when printing the result, you will see the result truncated to an integer. Can you correct changing the format? | |||||||
Improve this program asking the user to enter 2 real numbers (floats) separated by a space. This is how it should look like: | ||||||||
Line: 78 to 78 | ||||||||
| ||||||||
Changed: | ||||||||
< < |
| |||||||
> > |
| |||||||
Add these series to your class and try. Write a test script exercising the different methods. When running on a PC you may want to plot the series as well. | ||||||||
Line: 98 to 98 | ||||||||
| ||||||||
Added: | ||||||||
> > |
|
Line: 1 to 1 | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Course on Internet of Things Exercises Session 1:Introductory remarks: | |||||||||||||
Changed: | |||||||||||||
< < | The scripts we are going to develop during these exercises do not depend on any system issues: We do not use command line arguments not available in MicroPython nor do we use any hardware specific features which are not available on a PC. The exercises can therefore be developed and run on the ESP32 but also on any standard PC with Python3 installed. | ||||||||||||
> > | The scripts we are going to develop during this exercise session do not depend on any system issues: We do not use command line arguments not available in MicroPython nor do we use any hardware specific features which are not available on a PC. The exercises can therefore be developed and run on the ESP32 but also on any standard PC with Python3 installed. | ||||||||||||
Exercise 1: Use of REPL | |||||||||||||
Changed: | |||||||||||||
< < | Connect to your ESP32 with minicom or thonny. | ||||||||||||
> > | Connect to your ESP32 with minicom or thonny. You may try the same thing running Python3 on your PC. | ||||||||||||
Using REPL:
| |||||||||||||
Line: 65 to 65 | |||||||||||||
| |||||||||||||
Added: | |||||||||||||
> > | Exercise 5: Some maths: Calculate the sine functionWrite a script that asks the user for an angle in degrees. Calculate the sine of this angle.Exercise 6: ClassesWrite a Python class with methods calculation mathematical number series. These series should be calculated:
| ||||||||||||
-- ![]() | |||||||||||||
Line: 75 to 92 | |||||||||||||
| |||||||||||||
Added: | |||||||||||||
> > |
|
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Course on Internet of Things Exercises Session 1:Introductory remarks:The scripts we are going to develop during these exercises do not depend on any system issues: We do not use command line arguments not available in MicroPython nor do we use any hardware specific features which are not available on a PC. The exercises can therefore be developed and run on the ESP32 but also on any standard PC with Python3 installed. | ||||||||
Changed: | ||||||||
< < | Exercise 1: | |||||||
> > | Exercise 1: Use of REPL | |||||||
Connect to your ESP32 with minicom or thonny. | ||||||||
Line: 14 to 14 | ||||||||
| ||||||||
Changed: | ||||||||
< < | Exercise 2: | |||||||
> > |
Exercise 2: A simple calculator | |||||||
Write a script that assigns the values 5 and 3 to the variables a and b respectively | ||||||||
Line: 46 to 47 | ||||||||
| ||||||||
Changed: | ||||||||
< < |
Exercise 3: | |||||||
> > | Try also several spaces in between operands and operator.
Exercise 3: Conditions | |||||||
Like in exercise2, start with 2 numbers a,b with values 5 and 3. In your program check which of the 2 numbers is bigger and print the result.
Then improve the program asking the user for 2 integer numbers. Make sure he enters 2 correct numbers and capture possible errors. This is a typical output:
![]() | ||||||||
Added: | ||||||||
> > | Exercise 4: The Fibonacci seriesThe Fibonacci number series is defined as: F(0) = 0; F(1) = 1 F(n) = F(n-1) + F(n-2)
| |||||||
-- ![]() |
Line: 1 to 1 | |||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Course on Internet of Things Exercises Session 1: | |||||||||||||||||||
Line: 38 to 38 | |||||||||||||||||||
Bonus points: Writing a parser for user input is rather easy if the numbers and operator are separated by spaces (have a look at the split method of strings). It is quite a bit more tricky if you allow entering calculations without spaces between the operands and the operator. Can you write a parser accomplishing this? Try your parser on this input: | |||||||||||||||||||
Added: | |||||||||||||||||||
> > |
| ||||||||||||||||||
Deleted: | |||||||||||||||||||
< < | 5.3+4.7 ok 5.3++4.7 not ok 5..3 + 4.7 not ok .3+.7 ok 5.3+4b7 not ok | ||||||||||||||||||
Exercise 3: | |||||||||||||||||||
Changed: | |||||||||||||||||||
< < | Like in exercise2, start with 2 number a,b with values 5 and 3. In your program check which of the 2 numbers is bigger and print the result. Then ask the user for 2 integer numbers. Make sure he enters 2 correct numbers and capture possible errors. This is a typical output: | ||||||||||||||||||
> > | Like in exercise2, start with 2 numbers a,b with values 5 and 3. In your program check which of the 2 numbers is bigger and print the result. Then improve the program asking the user for 2 integer numbers. Make sure he enters 2 correct numbers and capture possible errors. This is a typical output: | ||||||||||||||||||
![]() |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Course on Internet of Things Exercises Session 1: | ||||||||
Added: | ||||||||
> > | Introductory remarks:The scripts we are going to develop during these exercises do not depend on any system issues: We do not use command line arguments not available in MicroPython nor do we use any hardware specific features which are not available on a PC. The exercises can therefore be developed and run on the ESP32 but also on any standard PC with Python3 installed. | |||||||
Exercise 1:Connect to your ESP32 with minicom or thonny. | ||||||||
Line: 22 to 25 | ||||||||
| ||||||||
Changed: | ||||||||
< < | Improve this program asking the user to enter 2 integers separated by a space. If this happens when the user mistypes and enters something that is not an integer can you capture the error and simply ask him to repeat his input until you get 2 correct integer numbers?
Bonus points: Writing a parser is quite easy if the numbers are separated. It is quite a bit more tricky if you allow entering calculations with spaces between the operands and the operator. Can you write a parser accomplishing this?
Exercise 1:Connect to your ESP32 with minicom or thonny. Using REPL:
Exercise 2:Write a script that assigns the values 5 and 3 to the variables a and b respectively | |||||||
> > | Improve this program asking the user to enter 2 real numbers (floats) separated by a space. This is how it should look like: | |||||||
Changed: | ||||||||
< < | Print the results of 4 basic arithmetic operations:
| |||||||
> > | ![]() | |||||||
Changed: | ||||||||
< < | Improve this program asking the user to enter 2 integers separated by a space. What happens when the user mistypes and enters something that is not an integer? | |||||||
> > | If this happens: | |||||||
Changed: | ||||||||
< < | Can you capture the error and simply ask him to repeat his input until you get 2 correct integer numbers? | |||||||
> > | ![]() | |||||||
Changed: | ||||||||
< < | Exercise 3: | |||||||
> > | when the user mistypes and enters something that is not an integer, can you capture the error and simply ask the user to repeat his input, until you get 2 correct integer numbers? | |||||||
Changed: | ||||||||
< < | Ask the user for 2 integer numbers. Check with one is bigger and print the result: | |||||||
> > | Bonus points: Writing a parser for user input is rather easy if the numbers and operator are separated by spaces (have a look at the split method of strings). It is quite a bit more tricky if you allow entering calculations without spaces between the operands and the operator. Can you write a parser accomplishing this? | |||||||
Changed: | ||||||||
< < | Running the program should result in output as shown below: | |||||||
> > | Try your parser on this input: | |||||||
Added: | ||||||||
> > | 5.3+4.7 ok 5.3++4.7 not ok 5..3 + 4.7 not ok .3+.7 ok 5.3+4b7 not ok | |||||||
Exercise 3: | ||||||||
Changed: | ||||||||
< < | Ask the user for 2 integer numbers. Check with one is bigger and print the result: | |||||||
> > | Like in exercise2, start with 2 number a,b with values 5 and 3. In your program check which of the 2 numbers is bigger and print the result. Then ask the user for 2 integer numbers. Make sure he enters 2 correct numbers and capture possible errors. This is a typical output: | |||||||
Changed: | ||||||||
< < | Running the program should result in output as shown below: | |||||||
> > | ![]() | |||||||
-- ![]() Comments | ||||||||
Added: | ||||||||
> > |
|
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Added: | ||||||||
> > |
Course on Internet of Things Exercises Session 1:Exercise 1:Connect to your ESP32 with minicom or thonny. Using REPL:
Exercise 2:Write a script that assigns the values 5 and 3 to the variables a and b respectively Print the results of 4 basic arithmetic operations:
Exercise 1:Connect to your ESP32 with minicom or thonny. Using REPL:
Exercise 2:Write a script that assigns the values 5 and 3 to the variables a and b respectively Print the results of 4 basic arithmetic operations:
Exercise 3:Ask the user for 2 integer numbers. Check with one is bigger and print the result: Running the program should result in output as shown below:Exercise 3:Ask the user for 2 integer numbers. Check with one is bigger and print the result: Running the program should result in output as shown below: --![]() Comments |