Week 10 Project

Week 10: Output Devices

Assignment

Group Assignment

Individual Assignment

Week 10 Practical

We had to take a breadboard or our chip and connect it up to different Output devices then load a program into Arduino to make it do different things. I wrote the following code to move a motor back and forth.

Arduino Code

But I have came across an error

Arduino Compile Error

Ok so I learned quite a bit here after Dani came to the rescue….it seemed that the servo library itself needed to pull or call a function from the main Arduino library and that since I was using Arduino's latest version certain things were not supported as they had previously been….so I needed to go back a version. Once I went to the previous Arduino version, the code compiled and worked immediately.

Also, one has to remember to check that they are connected to the correct board, on the correct USB port and that USB CDC is enabled on boot.

But, after all this nothing worked. So with Dani's help we tested a few different servo motors and found that it was the servo that was broken. When we first learn programming there is a lot of self doubt, but as part of the debugging we must also go through the process of checking everything including the components.

#include  // Include the s3servo library

static const int servoPin = 15; // Set the servo signal pin to GPIO 15 
s3servo servo;  //Create a servo object
void setup() {
    Serial.begin(115200);// Start the serial monitor for debugging/output

    servo.attach(servoPin);// Attach the servo to pin 4 or think about GPIO 15-18
    //servo.attach(servoPin,0,0,180,500,2000); //This would manually set: Channel: 0, Min angle: 0°, Max angle: 180°, PWM duty for 0°: 500 µs, PWM duty 
    //for 180°: 2000 µs (Useful for calibration/custom servos)
}

void loop() {
    for(int angle = 0; angle <= 180; angle++) {
        servo.write(angle); // Move to current angle
        Serial.println(angle); // Print the angle to Serial Monitor
        delay(20); // Wait 20 milliseconds
    }

    for(int angle = 180; angle >= 0; angle--) {
        servo.write(angle);// Move back down
        Serial.println(angle);
        delay(20);
    }
}

And here the serial monitor shows the program instructing the motor to run through angles

Serial Monitor Output

So I connected the SG90 servo again and was glad it was finally working.

Servo Wiring

This mp4 shows the code running through angles 1 – 180 and back and one can see the motor moving.

I think it's worth taking a moment to go through the Arduino wiring too.

Arduino Wiring

Week 10 Practical Monday Morning

The lesson was a big mess for me on Thursday and Friday and that stuck with me over the weekend. One has to remember to check wiring, code logic, that one is using the correct library and that it doesn't conflict with the version of Arduino. One must also check components to see that nothing is burned out and that there is a signal going through the system. Sadly, in my experience as a great proponent of AI, chatgpt, Deepseek and all AI I tried were useless and I was very grateful for Dani who helped immensely.

Since it is Monday morning - I will attempt a few different experiments again and hope that I can get some results to document.

I start with what was done on Friday and am glad to say everything worked fine:

Then I tried a slightly different code adding in delays to slow down the way the motor moves and that worked fine so I am moving on.

#include 

static const int servoPin = 15;
s3servo servo;
int currentPosition = 0;  // Keep track of where the servo is

void setup() {
    Serial.begin(115200);
    servo.attach(servoPin);
    servo.write(0);  // Start at 0 degrees
    delay(1000);     // Give it time to reach starting position
}

void loop() {
    // Forward movement
    for(int target = 0; target <= 90; target += 15) {
        // Move one degree at a time to the target
        while(currentPosition < target) {
            currentPosition++;
            servo.write(currentPosition);
            delay(500);  // Small delay between degree changes
        }
        Serial.print("Reached Position: ");
        Serial.println(currentPosition);
        delay(1000);  // Pause at the target position
    }
    
    // Backward movement
    for(int target = 75; target >= 0; target -= 15) {
        // Move one degree at a time to the target
        while(currentPosition > target) {
            currentPosition--;
            servo.write(currentPosition);
            delay(500);  // Small delay between degree changes
        }
        Serial.print("Reached Position: ");
        Serial.println(currentPosition);
        delay(1000);  // Pause at the target position
    }
}

LCD Display Implementation

Then I was curious to see if I could make a LCD return some text as I may use one in a future project. I got hold of a DF Robot LCD1602 RGB Backlight Module v1.0.

I looked online and found that the library I wanted is called DFRobot_RGBLCD1602 library. I searched for it and downloaded it from the Arduino Libraries. This library facilitates communication with the display via the I2C protocol and allows control over both the text and the RGB backlight. I went to Sketch > Include Library > Manage Libraries and searched for DFRobot_RGBLCD1602 and clicked install.

I connected the pins as can be seen in the following photo

LCD Connections

Then I connected the LCD1602 module pins

Pin Connections

The lcd uses the I2C interface, and requires four connections:

Apparently the display has and I2C address for the LCD (LCD Address: 0x3E ) and also for the RGB backlight control (RGB Backlight Address: 0x60). The addresses are predefined in the library, but can be changed manually in GitHub

I decided to go through a few of the provided code examples. The first one just flashes my name:

/*!
 * @file Display.ino
 * @brief display.
 * @copyright Copyright (c) 2010 DFRobot Co.Ltd (http://www.dfrobot.com)
 * @licence     The MIT License (MIT)
 * @maintainer [yangfeng](feng.yang@dfrobot.com)
 * @version  V1.0
 * @date  2021-09-24
 * @url https://github.com/DFRobot/DFRobot_RGBLCD1602
 */
#include "DFRobot_RGBLCD1602.h"

/*
Change the RGBaddr value based on the hardware version
-----------------------------------------
       Moudule        | Version| RGBAddr|
-----------------------------------------
  LCD1602 Module      |  V1.0  | 0x60   |
-----------------------------------------
  LCD1602 Module      |  V1.1  | 0x6B   |
-----------------------------------------
  LCD1602 RGB Module  |  V1.0  | 0x60   |
-----------------------------------------
  LCD1602 RGB Module  |  V2.0  | 0x2D   |
-----------------------------------------
*/

DFRobot_RGBLCD1602 lcd(/*RGBAddr*/0x60 ,/*lcdCols*/16,/*lcdRows*/2);  //16 characters and 2 lines of show

void setup() {
    /**
     *  @brief initialize the LCD and master IIC
     */ 
    lcd.init();
    // Print a message to the LCD.
    lcd.print("hello, Marco!");
}

void loop() {
    /**
     *  @brief Turn off the display off 
     */
    lcd.noDisplay();
    delay(500);

    /**
     *  @brief Turn on the display  
     */
    lcd.display();
    delay(500);
}