Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
LEDs and NeoPixelIntroduction | ||||||||
Line: 47 to 47 | ||||||||
In exercise 6 the LEDs will turn on clockwise (cw). Modify the program such that the LEDs turn on counter clock wise (ccw). The exercise sheet in odt format: | ||||||||
Added: | ||||||||
> > | Exercise 8: The color wheel | |||||||
Changed: | ||||||||
< < | https://afnog.iotworkshop.africa/pub/IoT_Course_English/LEDsAndNopNeoPixel/exercise_2_modified.odt | |||||||
> > | ![]() | |||||||
-- ![]() Comments | ||||||||
Line: 59 to 68 | ||||||||
| ||||||||
Changed: | ||||||||
< < |
| |||||||
> > |
| |||||||
| ||||||||
Added: | ||||||||
> > |
|
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
LEDs and NeoPixelIntroduction | ||||||||
Line: 15 to 15 | ||||||||
Again the LEDs are accessible, this time through a dedicated serial protocol, on a single GPIO line. For the board we are using the GPIO line can be selected with solder jumpers. If you look at the photo of the board's back side very closely you will see that the jumper was set to D0 or GPIO 26 on the ESP32.
Further introductory remarks: | ||||||||
Changed: | ||||||||
< < | In comparison with the first exercise session these exercises are rather simple. This is mainly due to the fact that all difficulties in accessing the devices are hidden from you in the drivers which are part of MicroPython. If you want to know what is going on behind the scene please have a look at https://www.parallax.com/sites/default/files/downloads/28085-WS2812B-RGB-LED-Datasheet.pdf![]() Exercise 1: Switching the user LED with REPL | |||||||
> > | In comparison with the first exercise session these exercises are rather simple. This is mainly due to the fact that all difficulties in accessing the devices are hidden from you in the drivers which are part of MicroPython. If you want to know what is going on behind the scene please have a look at https://www1.parallax.com/sites/default/files/downloads/28085-WS2812B-RGB-LED-Datasheet.pdf![]() | |||||||
It is actually very easy to access the LED because all you need is already available in MicroPython. Just look it up at https://docs.micropython.org/en/latest/esp32/quickref.html#pins-and-gpio ![]() Exercise 2: The Embedded System's Hello World Program: The blinking LED | ||||||||
Line: 33 to 34 | ||||||||
The light intensity on the LED can be changed if we do not supply a fixed signal level to it but a frequency. The duty cycle of the signal determines the light intensity. This is called Pulse Width Modulation or PWM for short. Write a program that increases the intensity in a linear fashion and the decreases it again linearly.
Exercise 5: The WS2812 addressable LED | ||||||||
Changed: | ||||||||
< < | The WS2812 LED is often used in LED chains. It is an RGB LED using a single data line which can be cascaded. It has a data in pin and a data out pin where the data out pin is connected to the data in pin of the following LED. It uses a serial protocol that must be precisely timed. For more information please consult the data sheet![]() ![]() | |||||||
> > | The WS2812 LED is often used in LED chains. It is an RGB LED using a single data line which can be cascaded. It has a data in pin and a data out pin where the data out pin is connected to the data in pin of the following LED. It uses a serial protocol that must be precisely timed. For more information please consult the data sheet![]() ![]() | |||||||
Warning: The WS2812 produces very bright light! Do not look into it directly or reduce the light intensity by software. |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
LEDs and NeoPixelIntroduction | ||||||||
Changed: | ||||||||
< < | The ESP32 has 2 LEDs on board. The first one indicates power while the second one is user programmable. The user programmable built-in LED is connected to GPIO pin 2. | |||||||
> > | The ESP32 has 2 LEDs on board. The first one indicates power while the second one is user programmable. The user programmable built-in LED is connected to GPIO pin 19. | |||||||
Changed: | ||||||||
< < | ![]() | |||||||
> > | ![]() | |||||||
You can see the LEDs in the far left, bottom corner. The power LED is marked "ON" while the user programmable one is marked "L". | ||||||||
Line: 31 to 31 | ||||||||
Exercise 4: Change the LED light intensityThe light intensity on the LED can be changed if we do not supply a fixed signal level to it but a frequency. The duty cycle of the signal determines the light intensity. This is called Pulse Width Modulation or PWM for short. Write a program that increases the intensity in a linear fashion and the decreases it again linearly. | ||||||||
Deleted: | ||||||||
< < |
-- ![]() | |||||||
Exercise 5: The WS2812 addressable LEDThe WS2812 LED is often used in LED chains. It is an RGB LED using a single data line which can be cascaded. It has a data in pin and a data out pin where the data out pin is connected to the data in pin of the following LED. It uses a serial protocol that must be precisely timed. For more information please consult the data sheet![]() ![]() | ||||||||
Line: 46 to 44 | ||||||||
Exercise 7: Change to CCWIn exercise 6 the LEDs will turn on clockwise (cw). Modify the program such that the LEDs turn on counter clock wise (ccw). | ||||||||
Added: | ||||||||
> > |
The exercise sheet in odt format:
https://afnog.iotworkshop.africa/pub/IoT_Course_English/LEDsAndNopNeoPixel/exercise_2_modified.odt
-- ![]() | |||||||
Comments | ||||||||
Line: 53 to 57 | ||||||||
| ||||||||
Added: | ||||||||
> > |
|
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
LEDs and NeoPixelIntroduction | ||||||||
Line: 10 to 10 | ||||||||
You can see the LEDs in the far left, bottom corner. The power LED is marked "ON" while the user programmable one is marked "L". The NeoPixel is based on the WS2812 addressable RGB LED which is often used in LED chains. In our case we have 6 LEDs arranged in a ring with a 7th one placed in the center of the ring. | ||||||||
Changed: | ||||||||
< < |
![]() | |||||||
> > |
| |||||||
Further introductory remarks: | ||||||||
Changed: | ||||||||
< < | In comparison with the first exercise session these exercises are rather simple. This is mainly due to the fact that all difficulties in accessing the devices is hidden from you in the drivers which are part of MicroPython. If you want to know what is going on behind the scene please have a look at https://www.parallax.com/sites/default/files/downloads/28085-WS2812B-RGB-LED-Datasheet.pdf![]() | |||||||
> > | In comparison with the first exercise session these exercises are rather simple. This is mainly due to the fact that all difficulties in accessing the devices are hidden from you in the drivers which are part of MicroPython. If you want to know what is going on behind the scene please have a look at https://www.parallax.com/sites/default/files/downloads/28085-WS2812B-RGB-LED-Datasheet.pdf![]() | |||||||
Exercise 1: Switching the user LED with REPLIt is actually very easy to access the LED because all you need is already available in MicroPython. Just look it up athttps://docs.micropython.org/en/latest/esp32/quickref.html#pins-and-gpio ![]() | ||||||||
Line: 36 to 35 | ||||||||
-- ![]() Exercise 5: The WS2812 addressable LED | ||||||||
Changed: | ||||||||
< < | The WS2812 LED is often used in LED chains. It is an RGB LED using a single data line which can be cascaded. It has a data in pin and a data out pin where the data out pin is connected to the data in pin of the following LED. It uses a serial protocol that must be precisely timed. For more information please consult the data sheet![]() ![]() | |||||||
> > | The WS2812 LED is often used in LED chains. It is an RGB LED using a single data line which can be cascaded. It has a data in pin and a data out pin where the data out pin is connected to the data in pin of the following LED. It uses a serial protocol that must be precisely timed. For more information please consult the data sheet![]() ![]() | |||||||
Warning: The WS2812 produces very bright light! Do not look into it directly or reduce the light intensity by software. | ||||||||
Line: 53 to 52 | ||||||||
| ||||||||
Added: | ||||||||
> > |
|
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
LEDs and NeoPixelIntroduction | ||||||||
Line: 31 to 31 | ||||||||
Exercise 4: Change the LED light intensity | ||||||||
Changed: | ||||||||
< < | The light intensity on the LED can be changed if we do not supply a fixed signal level to it but a frequency. The duty cycle of the signal determines the light intensity. Write a program that increases the intensity in a linear fashion and the decreases it again linearly. | |||||||
> > | The light intensity on the LED can be changed if we do not supply a fixed signal level to it but a frequency. The duty cycle of the signal determines the light intensity. This is called Pulse Width Modulation or PWM for short. Write a program that increases the intensity in a linear fashion and the decreases it again linearly. | |||||||
-- ![]() | ||||||||
Changed: | ||||||||
< < | Exercise 4: The WS2812 addressable LED | |||||||
> > | Exercise 5: The WS2812 addressable LED | |||||||
The WS2812 LED is often used in LED chains. It is an RGB LED using a single data line which can be cascaded. It has a data in pin and a data out pin where the data out pin is connected to the data in pin of the following LED. It uses a serial protocol that must be precisely timed. For more information please consult the data sheet![]() ![]() | ||||||||
Changed: | ||||||||
< < | Exercise 5: Change the Colors | |||||||
> > | Exercise 6: Change the Colors | |||||||
Write a program that consecutively switches on the LEDs in different colors. First switch on the red component of the LED with address 0 then add the one with address 1 etc. Once all LEDs are red, switch them off again, change the color to green and repeat the cycle. Finally do the same for the blue component. Wait for 1 s before switching the LEDs. | ||||||||
Added: | ||||||||
> > | Exercise 7: Change to CCWIn exercise 6 the LEDs will turn on clockwise (cw). Modify the program such that the LEDs turn on counter clock wise (ccw). | |||||||
Comments |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
LEDs and NeoPixelIntroduction | ||||||||
Line: 13 to 13 | ||||||||
![]() | ||||||||
Changed: | ||||||||
< < | Again the LEDs are accessible, this time through a dedicate serial protocol, on a GPIO line. For the board we are using the GPIO line can be selected with solder jumpers. | |||||||
> > | Again the LEDs are accessible, this time through a dedicate serial protocol, on a GPIO line. For the board we are using the GPIO line can be selected with solder jumpers. The jumpers were set to D0 or GPIO 26. | |||||||
Further introductory remarks:In comparison with the first exercise session these exercises are rather simple. This is mainly due to the fact that all difficulties in accessing the devices is hidden from you in the drivers which are part of MicroPython. If you want to know what is going on behind the scene please have a look at https://www.parallax.com/sites/default/files/downloads/28085-WS2812B-RGB-LED-Datasheet.pdf![]() | ||||||||
Line: 34 to 34 | ||||||||
The light intensity on the LED can be changed if we do not supply a fixed signal level to it but a frequency. The duty cycle of the signal determines the light intensity. Write a program that increases the intensity in a linear fashion and the decreases it again linearly.
-- ![]() | ||||||||
Added: | ||||||||
> > | Exercise 4: The WS2812 addressable LED | |||||||
Added: | ||||||||
> > | The WS2812 LED is often used in LED chains. It is an RGB LED using a single data line which can be cascaded. It has a data in pin and a data out pin where the data out pin is connected to the data in pin of the following LED. It uses a serial protocol that must be precisely timed. For more information please consult the data sheet![]() ![]() Exercise 5: Change the ColorsWrite a program that consecutively switches on the LEDs in different colors. First switch on the red component of the LED with address 0 then add the one with address 1 etc. Once all LEDs are red, switch them off again, change the color to green and repeat the cycle. Finally do the same for the blue component. Wait for 1 s before switching the LEDs. | |||||||
Comments |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
LEDs and NeoPixelIntroduction | ||||||||
Line: 9 to 9 | ||||||||
You can see the LEDs in the far left, bottom corner. The power LED is marked "ON" while the user programmable one is marked "L". | ||||||||
Changed: | ||||||||
< < | The NeoPixel is based on the WS2812 addressable RGB LED which is often used in LED chains. In our case we have 6 LEDs arranged in a ring with a 7th on placed in the center of the ring. | |||||||
> > | The NeoPixel is based on the WS2812 addressable RGB LED which is often used in LED chains. In our case we have 6 LEDs arranged in a ring with a 7th one placed in the center of the ring. | |||||||
![]() | ||||||||
Added: | ||||||||
> > | Further introductory remarks:In comparison with the first exercise session these exercises are rather simple. This is mainly due to the fact that all difficulties in accessing the devices is hidden from you in the drivers which are part of MicroPython. If you want to know what is going on behind the scene please have a look at https://www.parallax.com/sites/default/files/downloads/28085-WS2812B-RGB-LED-Datasheet.pdf![]() | |||||||
Exercise 1: Switching the user LED with REPL | ||||||||
Changed: | ||||||||
< < | It is actually very easy to access the LED because all you need is already available in MicroPython. Just look it up at https://docs.micropython.org/en/latest/esp32/quickref.html#pins-and-gpio ![]() | |||||||
> > | It is actually very easy to access the LED because all you need is already available in MicroPython. Just look it up at https://docs.micropython.org/en/latest/esp32/quickref.html#pins-and-gpio ![]() | |||||||
Exercise 2: The Embedded System's Hello World Program: The blinking LEDWrite a script that makes the LED blink at 1 Hz (500ms on, 500 ms off). | ||||||||
Changed: | ||||||||
< < | Improve the program by capturing <ctrl> c, which stops the endless loop, switching off the LED before exiting the program. | |||||||
> > | Improve the program by capturing Ctrl-C, which stops the endless loop, switching off the LED before exiting the program. This can easily be done in a try..except clause capturing the KeyboardInterrupt exception. | |||||||
Exercise 3: SOSProbably the most well known Morse sequence is SOS (Save Our Souls) which consists of 3 long sounds (Morse "S") followed by 3 short ones (Morse "O") again followed by 3 long ones. Make the LED blink the SOS sequence. Pause for 1 s between 2 SOS sequences. |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Added: | ||||||||
> > |
LEDs and NeoPixelIntroductionThe ESP32 has 2 LEDs on board. The first one indicates power while the second one is user programmable. The user programmable built-in LED is connected to GPIO pin 2.![]() ![]() Exercise 1: Switching the user LED with REPLIt is actually very easy to access the LED because all you need is already available in MicroPython. Just look it up athttps://docs.micropython.org/en/latest/esp32/quickref.html#pins-and-gpio ![]() Exercise 2: The Embedded System's Hello World Program: The blinking LEDWrite a script that makes the LED blink at 1 Hz (500ms on, 500 ms off). Improve the program by capturing <ctrl> c, which stops the endless loop, switching off the LED before exiting the program.Exercise 3: SOSProbably the most well known Morse sequence is SOS (Save Our Souls) which consists of 3 long sounds (Morse "S") followed by 3 short ones (Morse "O") again followed by 3 long ones. Make the LED blink the SOS sequence. Pause for 1 s between 2 SOS sequences.Exercise 4: Change the LED light intensityThe light intensity on the LED can be changed if we do not supply a fixed signal level to it but a frequency. The duty cycle of the signal determines the light intensity. Write a program that increases the intensity in a linear fashion and the decreases it again linearly. --![]() Comments
|