We will learn the Python Programming Language.
We need to install a Coding Editor. We will use the Thonny code editor.
Please click the following link to go to Thonny Website: thonny.org
For this semester, we will be using the Maker PI RP2040 Motor Board. 
This board is based on the Raspberry Pi Pico RP2040 chip.
Because we want to control robots and other electronics, we will use the CircuitPython to program our devices.
Please click the following link to learn the basic CircuitPython.
For next few weeks you will learn to use different libraries to use various hardware’s and make a your own Alarm Clock.
First library to import and learn is KEYPAD (import keypad). We will use KEYPAD library to check if any switch, button or key is pressed. Please click and open the file code_1_keypad.py.
Second library to import and learn is ROTARY (import rotary). We will use a rotary switch to change values and use it as a switch.
Third library to import and learn is TM1637 (import TM1637). We use TM1637 library to display 4 digit numbers on Seven LED display.
Fourth library to import and learn is DS1307 (import adafruit_ds1307). We use DS1307 library keep up with current time.