Output Devices

Objectives for Week 10


Group Assignment

As part of the group assignment, we calculated the power consumption of Sg90 servo using a bench power supply. The SG90 servo draws a maximum power of 1.5W

Group assignment link.


Individual Assignment

My final project is a talking toy. Its head can be tilted at an angle as well. So this week I took Speaker and servo motor as my output devices.

I still a beginner in programming, I need to spend more time on programming this week. So I choose Xiao ESP32S3 as my microcontroller for this week.

Image taken from Seeed studio.

To control the speaker an amplifier needed to be included in the circuit. We have LM4861M amplifier in our lab. Refering the datasheet I made the basic circuit for the amplifier. As we don't have the electrolytic capacitors in our lab I chose the ceramic capacitor for the circuit.

Amplifier Basic Circuit.

For audio control the I2S protocol is necessary and the microcontrol should have the I2S protocol. Unfortunately I haven't checked the I2S capability of the microcontroller and the XiaoESP32S3 doesn't offer I2S support. So I need to use Digital to analog converter IC PT8211 in the circuit to control the speaker. I haven't used the Lowpass Filter but connected both the RCH and LCH using a 0.1uF capacitor.

DAC IC PT8211 Basic circuit.

Using the header pin sockets I pulled out the I2C pins so that I can Connect any I2c devices to my board. All other pins were pulled out using the header pin sockets so that I can connect the servo motor.


After collecting all these informations, I designed the board in KiCAD.

Schematic of the board.

Board design.

Then I milled it and took all the necessary components from the inventory and soldered it.


I tested it with the blink program available in the arduino IDE and it works fine as expected.


Servo Motor

A servo motor is a highly specialized motor designed for precise control of rotary or linear motion. It’s a rotational or translational motor that employs a feedback mechanism to ensure exact positioning, typically using a control signal that dictates the motor’s movement to a desired position. This mechanism allows for precise control of various components, making servo motors crucial in applications where precise positioning and smooth motion are required.

Image taken from Sparkfun.

I followed Autodesk Instructables to setup the servomotor with the Xiao ESP32S3. The connections were simple as you need a power pin, A GND pin and a GPIO pin capable of PWM output.


After all the wiring, I refered my classmate Noel's documentation for programming.

The program works well and the output is shown below,

  #include <ESP32Servo.h>
    Servo myServo;
    
    #define sPin 44
    #define PULSEMIN 500
    #define PULSEMAX 2500
    int pos = 180;
    
    void setup(){
        Serial.begin(9600);
        pinMode (sPin, OUTPUT);
        ESP32PWM::allocateTimer(0);
        myServo.attach (sPin, PULSEMIN, PULSEMAX);
    }
    
    void loop (){
        // //To caibrate
        // myServo.write(pos);
        // Serial.print("Servo position: ")
        // Serial.println(pos);
    
        // To sweep
        for (pos=0; pos<=180; pos+=1){
        myServo.write(pos);
        Serial.print("Servo position: ");
        Serial.println(pos);
        delay(15);
        
        }
        delay(1000); //Stops for a second after reaching 180 degree
    
        for (pos=180; pos>=0; pos-=1) {
        myServo.write(pos);
        Serial.print("Servo position: ");
        Serial.println(pos);
        delay(15); 
        }
        delay(1000); //Stops for a second after reaching 0 degree   
    }

Speaker

Our instructor Saheen gave me an 8ohm 5W speaker. Initially I tested it with the function generator to test the speaker. Selected the square wave and given the amplitude as 5 and frequancy as 2.8 initially. Then adjusted the value of frequancy so that the speaker produces the sound.


Then I connected the speaker to the board I designed and tried a basic code to beep in different frequencies. Unfortunately it doesn't work. I tried so many times and failed every time. I consulted my instructor Saheen and he inspected the board and told me that the the Audio In pin of the amplifier pin was grounded so that the signals produced from the microcontroller was directly grounded and hence the audio is not hearing.


He adviced me to cut the traces marked in the below image and join it using a wire and I did it.


Unfortunately this modifications also doesn't helps with working of the speaker. I tried with different codes and the value was printing on the serial monitor but there was no output from the speaker.


Heroshot


Conclusion

This week, I explored various output devices and designed a board to connect both a speaker and a servo motor. While I successfully controlled the servo motor, the speaker did not function as expected. However, this experience deepened my understanding of speaker circuits, and I am confident that I will be able to make it work in the future.


References


Downloads

Board Files.