This week's brief:
Group assignment:
NeoPixels are a brand of individually addressable RGB LEDs, meaning each LED can be controlled independently,
allowing for a wide range of lighting patterns and effects.
When using a normal RGB Led we require 3 pins for each Led.
Here is where Neopixel Leds come handy especially when handling multiple leds.
NeoPixels require only one data line for communication, making them easy to connect and control. Each light /
section is controlled by an integrated circuit that processes the information and converts it into data to control
the light,
the data then passes to the next light / section, where LEDs are on at any given time.
For this week i was instructed to use a AST0927MW-3.6Q electromagnetic transducer which is specifically designed for audio indication, with a resonant frequency of 2.73 kHz and a sound pressure level (SPL) of 85 dB. An electromechanical transducer is a type of device used to convert either an electrical signal into sound waves like in a loudspeaker or a device that converts a sound wave into an electrical signal like in a microphone. It basically converts mechanical motion into electric signals. Some electromechanical transducer examples are; a loudspeaker, a piezoelectric transducer, a microphone & permanent-magnet instrument's measuring mechanism.
16x2 LCD displays are widely used in various applications, including digital clocks, temperature and humidity displays, electronic voting machines, industrial automation, robotics, embedded systems, and more.
At the core of the LCD is the Hitachi HD44780 controller chip. This chip takes care
of generating the signals needed to
drive the liquid crystals and managing the data displayed. The display works by
controlling the liquid crystals to either block or allow light
to pass through, creating characters and symbols on the screen.
Character LCDs are specifically designed for displaying characters. A 16x2 character LCD shows16 characters per
line across two lines.
You can see tiny rectangles for each character on the screen as well as the pixels that make up a character. Each
of these rectangles is a grid of 5x8 pixels.
While reading through the data sheet i got to know that this LCD requires 16 pins out
of which atleast 12 would be required to operate it.
This led me to use the RP 2040 Raspberry Pi Pico microcontroller board as i had to connect a
lot of pins from other devices as well.
Raspberry Pi Pico is a low-cost, high-performance microcontroller board with flexible digital interfaces. This
compact board offers versatility and functionality that allows users to build a variety of projects, from simple
LED blink programs to sophisticated robotics.
The Raspberry Pi Pico can be programmed in MicroPython and C/C++.
Specs
I tested out example codes for each of the output devices to check if they are working properly.
```cpp // Simple demonstration on using an input device to trigger changes on your // NeoPixels. Wire a momentary push button to connect from ground to a // digital IO pin. When the button is pressed it will change to a new pixel // animation. Initial state has all pixels off -- press the button once to // start the first animation. As written, the button does not interrupt an // animation in-progress, it works only when idle. #include#ifdef __AVR__ #include // Required for 16 MHz Adafruit Trinket #endif // Digital IO pin connected to the button. This will be driven with a // pull-up resistor so the switch pulls the pin to ground momentarily. // On a high -> low transition the button press logic will execute. #define BUTTON_PIN 26 #define PIXEL_PIN 12 // Digital IO pin connected to the NeoPixels. #define PIXEL_COUNT 4 // Number of NeoPixels // Declare our NeoPixel strip object: Adafruit_NeoPixel strip(PIXEL_COUNT, PIXEL_PIN, NEO_GRB + NEO_KHZ800); // Argument 1 = Number of pixels in NeoPixel strip // Argument 2 = Arduino pin number (most are valid) // Argument 3 = Pixel type flags, add together as needed: // NEO_KHZ800 800 KHz bitstream (most NeoPixel products w/WS2812 LEDs) // NEO_KHZ400 400 KHz (classic 'v1' (not v2) FLORA pixels, WS2811 drivers) // NEO_GRB Pixels are wired for GRB bitstream (most NeoPixel products) // NEO_RGB Pixels are wired for RGB bitstream (v1 FLORA pixels, not v2) // NEO_RGBW Pixels are wired for RGBW bitstream (NeoPixel RGBW products) boolean oldState = HIGH; int mode = 0; // Currently-active animation mode, 0-9 void setup() { pinMode(BUTTON_PIN, INPUT_PULLUP); strip.begin(); // Initialize NeoPixel strip object (REQUIRED) strip.show(); // Initialize all pixels to 'off' } void loop() { // Get current button state. boolean newState = digitalRead(BUTTON_PIN); // Check if state changed from high to low (button press). if((newState == LOW) && (oldState == HIGH)) { // Short delay to debounce button. delay(20); // Check if button is still low after debounce. newState = digitalRead(BUTTON_PIN); if(newState == LOW) { // Yes, still low if(++mode > 8) mode = 0; // Advance to next mode, wrap around after #8 switch(mode) { // Start the new animation... case 0: colorWipe(strip.Color( 0, 0, 0), 50); // Black/off break; case 1: colorWipe(strip.Color(255, 0, 0), 50); // Red break; case 2: colorWipe(strip.Color( 0, 255, 0), 50); // Green break; case 3: colorWipe(strip.Color( 0, 0, 255), 50); // Blue break; case 4: theaterChase(strip.Color(127, 127, 127), 50); // White break; case 5: theaterChase(strip.Color(127, 0, 0), 50); // Red break; case 6: theaterChase(strip.Color( 0, 0, 127), 50); // Blue break; case 7: rainbow(10); break; case 8: theaterChaseRainbow(50); break; } } } // Set the last-read button state to the old state. oldState = newState; } // Fill strip pixels one after another with a color. Strip is NOT cleared // first; anything there will be covered pixel by pixel. Pass in color // (as a single 'packed' 32-bit value, which you can get by calling // strip.Color(red, green, blue) as shown in the loop() function above), // and a delay time (in milliseconds) between pixels. void colorWipe(uint32_t color, int wait) { for(int i=0; i RGB strip.setPixelColor(c, color); // Set pixel 'c' to value 'color' } strip.show(); // Update strip with new contents delay(wait); // Pause for a moment firstPixelHue += 65536 / 90; // One cycle of color wheel over 90 frames } } } ```
// Define the GPIO pin connected to the speaker const int speakerPin = 22 ; // Or any other GPIO pin void setup() { // Set the speaker pin as an output pinMode(speakerPin, OUTPUT); } void loop() { // Generate a tone (e.g., 1000 Hz) for 1 second tone(speakerPin, 1000, 1000); // Frequency (Hz), Duration (ms) delay(1000); // Wait for 1 second // Stop the tone noTone(speakerPin); delay(1000); // Wait for 1 second }
#include// initialize the library by associating any needed LCD interface pin // with the arduino pin number it is connected to const int rs = 6, en = 7, d4 = 8, d5 = 9, d6 = 11, d7 = 13; LiquidCrystal lcd(rs, en, d4, d5, d6, d7); void setup() { // set up the LCD's number of columns and rows: lcd.begin(16, 2); // Print a message to the LCD. lcd.print("hello, world!"); delay(1000); } void loop() { // scroll 13 positions (string length) to the left // to move it offscreen left: for (int positionCounter = 0; positionCounter < 13; positionCounter++) { // scroll one position left: lcd.scrollDisplayLeft(); // wait a bit: delay(150); } // scroll 29 positions (string length + display length) to the right // to move it offscreen right: for (int positionCounter = 0; positionCounter < 29; positionCounter++) { // scroll one position right: lcd.scrollDisplayRight(); // wait a bit: delay(150); } // scroll 16 positions (display length + string length) to the left // to move it back to center: for (int positionCounter = 0; positionCounter < 16; positionCounter++) { // scroll one position left: lcd.scrollDisplayLeft(); // wait a bit: delay(150); } // delay at the end of the full loop: delay(1000); }
// Simple demonstration on using an input device to trigger changes on your // NeoPixels. Wire a momentary push button to connect from ground to a // digital IO pin. When the button is pressed it will change to a new pixel // animation. Initial state has all pixels off -- press the button once to // start the first animation. As written, the button does not interrupt an // animation in-progress, it works only when idle. #include-->#ifdef __AVR__ #include // Required for 16 MHz Adafruit Trinket #endif // Digital IO pin connected to the button. This will be driven with a // pull-up resistor so the switch pulls the pin to ground momentarily. // On a high -> low transition the button press logic will execute. #define switch1 18 #define switch2 26 #define PIXEL_PIN 12 // Digital IO pin connected to the NeoPixels. #define PIXEL_COUNT 4 // Number of NeoPixels const int buzzerPin = 22; // Declare our NeoPixel strip object: Adafruit_NeoPixel strip(PIXEL_COUNT, PIXEL_PIN, NEO_GRB + NEO_KHZ800); // Argument 1 = Number of pixels in NeoPixel strip // Argument 2 = Arduino pin number (most are valid) // Argument 3 = Pixel type flags, add together as needed: // NEO_KHZ800 800 KHz bitstream (most NeoPixel products w/WS2812 LEDs) // NEO_KHZ400 400 KHz (classic 'v1' (not v2) FLORA pixels, WS2811 drivers) // NEO_GRB Pixels are wired for GRB bitstream (most NeoPixel products) // NEO_RGB Pixels are wired for RGB bitstream (v1 FLORA pixels, not v2) // NEO_RGBW Pixels are wired for RGBW bitstream (NeoPixel RGBW products) boolean oldState = HIGH; int mode = 0; // Currently-active animation mode, 0-9 int switchState = 0; void setup() { pinMode(switch1, INPUT_PULLUP); pinMode(switch2, INPUT_PULLUP); strip.begin(); // Initialize NeoPixel strip object (REQUIRED) strip.show(); // Initialize all pixels to 'off' } void loop() { switchState = digitalRead(switch1); if (switchState == HIGH) { // Assuming the switch is active when HIGH // Play a beep sound tone(buzzerPin, 2000, 20); // Play a 2000 Hz tone for 200 milliseconds }// Wait for 200 milliseconds else if (switchState == LOW) { noTone(buzzerPin); // Stop the tone }// Get current button state. boolean newState = digitalRead(switch1); // Check if state changed from high to low (button press). if((newState == LOW) && (oldState == HIGH)) { // Short delay to debounce button. delay(20); // Check if button is still low after debounce. newState = digitalRead(switch1); if(newState == LOW) { // Yes, still low if(++mode > 8) mode = 0; // Advance to next mode, wrap around after #8 switch(mode) { // Start the new animation... case 0: colorWipe(strip.Color( 0, 0, 0), 50); // Black/off break; case 1: colorWipe(strip.Color(255, 0, 0), 50); // Red break; case 2: colorWipe(strip.Color( 0, 255, 0), 50); // Green break; case 3: colorWipe(strip.Color( 0, 0, 255), 50); // Blue break; case 4: theaterChase(strip.Color(127, 127, 127), 50); // White break; case 5: colorWipe(strip.Color( 0, 0, 0), 50); // Black/off break; } } } // Set the last-read button state to the old state. oldState = newState; boolean iState = digitalRead(switch2); // Check if state changed from high to low (button press). if((iState == LOW) && (oldState == HIGH)) { // Short delay to debounce button. delay(20); // Check if button is still low after debounce. iState = digitalRead(switch2); if(iState == LOW) { // Yes, still low if(++mode > 8) mode = 0; // Advance to next mode, wrap around after #8 switch(mode) { // Start the new animation... case 0: colorWipe(strip.Color( 0, 0, 0), 50); // Black/off break; case 1: colorWipe(strip.Color(255, 0, 0), 50); // Red break; case 2: colorWipe(strip.Color( 0, 255, 0), 50); // Green break; case 3: colorWipe(strip.Color( 0, 0, 255), 50); // Blue break; case 4: theaterChase(strip.Color(127, 127, 127), 50); // White break; case 5: colorWipe(strip.Color( 0, 0, 0), 50); // Black/off break; } } } // Set the last-read button state to the old state. oldState = newState; } // Fill strip pixels one after another with a color. Strip is NOT cleared // first; anything there will be covered pixel by pixel. Pass in color // (as a single 'packed' 32-bit value, which you can get by calling // strip.Color(red, green, blue) as shown in the loop() function above), // and a delay time (in milliseconds) between pixels. void colorWipe(uint32_t color, int wait) { for(int i=0; i
Neopixel led Working
About Speaker
About 1602 LCD
About raspberry pi pico