HTMAA 2024 - Week 3

Previous: Laser Cutting Home Next: 3D Printing and Scanning

Group Assignment

To put it simply: as part of our group work, we got hands-on experience with a range of microcontrollers—like the ATTINY from the AVR8 family and SAMD, RP2040, and ESP32 from the ARM32 family. We compared these to see which one best met our project needs, taking into account factors such as power consumption, processing speed, and peripheral compatibility.

Week 3: Embedded Programming

This week, we delved into embedded programming to interact with local input/output devices and explore both wired and wireless communication. In my projects, I used a microcontroller to display information on an LCD screen and toggle between modes using a simple button.

Check out the video below to see my microcontroller in action:

And here’s a closer look at the code I developed. This snippet handles toggling between a welcome message and a fire animation when the button is pressed.


#include 
#include 

#define BTN_PIN 5
#define TFT_DC 2
#define TFT_CS 15

Adafruit_ILI9341 tft = Adafruit_ILI9341(TFT_CS, TFT_DC);

bool lastButtonState = HIGH;
bool currentMessageInfo = true;

void displayMessage(const char* message, uint16_t color) {
    tft.fillScreen(ILI9341_BLACK);
    tft.setCursor(0, 0);
    tft.setTextColor(color);
    tft.setTextSize(2);
    tft.println(message);
}

void displayFireArt() {
    tft.fillScreen(ILI9341_BLACK);
    tft.setCursor(0, 0);
    tft.setTextColor(ILI9341_RED);
    tft.setTextSize(1);
    tft.println("  🔥 Fire Animation 🔥 ");
}

void setup() {
    pinMode(BTN_PIN, INPUT_PULLUP);
    tft.begin();
    tft.setRotation(1);
    displayMessage("Welcome to Embedded Programming", ILI9341_WHITE);
}

void loop() {
    bool buttonState = digitalRead(BTN_PIN);
    if (buttonState != lastButtonState) {
        lastButtonState = buttonState;
        if (buttonState == LOW) {
            if (currentMessageInfo) {
                displayFireArt();
                currentMessageInfo = false;
            }
        } else {
            if (!currentMessageInfo) {
                displayMessage("Welcome to Embedded Programming", ILI9341_WHITE);
                currentMessageInfo = true;
            }
        }
    }
    delay(50);
}
      

Assignment: