Output Devices

This Week I worked on output Devices

Assignment Brief:

  1. Group: Measure an output device’s power consumption using a multimeter
  2. Individual: Add an output device to your microcontroller board.
  3. Program it to perform a specific function.

Output Devices

Output devices are hardware components that display, project, or produce the results of a computer’s processing. These devices take information from the computer and convert it into a human-perceivable form like visual, audio, or physical output.

Visual Output Devices Audio Devices Physical Output Devices Display Devices Motion Devices Projection Devices

Batteries

Beyond Output devices, I learn about output device controls that is, Batteries. Batteries don’t just supply power—they also regulate and control the behavior of output devices like motors, LEDs, displays, and more. There are mainly two types of batteries: Lithium polymer and lithium Ion. Battery Management System (BMS) BMS is a Key Aspects of Battery Control in Output Devices It prevents overcharging, over-discharging, and overheating and Balances cells in multi-cell batteries (e.g., Li-ion packs in laptops, EVs).

Feature LiPo (Lithium Polymer) Li-ion (Lithium-ion)
Electrolyte Type Gel-like Liquid
Weight & Shape Lightweight, Flexible Heavier, Rigid
Energy Density Lower Higher (Longer-lasting)
Discharge Rate Higher (Great for RC, Drones) Lower (Steady Power Output)
Safety Prone to swelling if overcharged More stable, less risk of swelling
Common Uses RC Cars, Drones, High-power applications Phones, Laptops, Electric Vehicles

Lipo Battery

beam

Lion Battery

Spirit level

Some other types of Batteries are:

NiMH (Nickel-Metal Hydride): Rechargeable, better than NiCd. Found in cameras and toys.

NiCd (Nickel-Cadmium): Older rechargeable type with memory effect issues. Used in power tools.

Lead-Acid: Heavy, high power output. Used in cars and UPS systems.

Alkaline (AA, AAA, 9V): Non-rechargeable, long shelf life. Used in remotes and clocks.

Zinc-Carbon: Cheap, disposable, low power. Common in basic flashlights and toys.

Solid-State: Future technology, safer, and higher capacity. Emerging in battery innovations.

Sodium-Ion: Eco-friendly, cheaper than Li-ion. Potential future alternative energy storage.

Servo Motor

This week I decided to work with Servo motor as it is a part of my Final Project. I thought that testing the sevo motor speed will be insightful to learn and implement. I started by learning about servos.

A servo motor is a type of motor that provides precise control of angular or linear position, velocity, and acceleration. It consists of a DC or AC motor, a gear system, a position sensor (usually a potentiometer), and a control circuit. Servo has higher ability of Speed position and Power

As I learnt about Servo Motors I was confused between a servo motor, Dc motor and Stepper motor. I asked my professor Pranav Gawde assisted me to understand the difference between Servo and Stepper Motor: Servo has higher ability of Speed position and Power. Stepper Motor has higher torque and precision of controlled steps and a DC motor has a constant high efficient rotatary motion.

DC Motor:

Servo Motor:

Stepper Motor:


Servo Motor

The internal components of a servo motor and how it functions. Key Parts & Their Roles:

SERVO PIN-OUT

gimp1

In the week of Eelctronics design I designed a PCB Board adhering to my Final project inputs and outputs. The documentation of PCB Designing is done in my Week 06: Electronics Design. Further, I milled the PCB in my Electronics Production week, The documentation of the development board and milling is done in my Week 08: Electronics Production. Below is the PCB that I milled during this week.

gimp1 Later, I soldering the XAIO RP2040 and a resistor to my PCB Board, I also attatched a JST pins to the PCB Board and and Soldered it.
NOTE: The reason I used a JST Pin resistors was for the requirement of my Final Project. gimp1 Later, I soldered the SERVO MOTOR to the JST Wires. gimp1 Once all was done I tested the working of the all the pinouts using an external connector. Once I confirmed the functioning, I moved to the Coding part. gimp1 As mention above, you will find a detailed documentation of the above in week 06 and week 08 of my documentation.


Coding: Part 1

Used Ai prompt: Generate a simple code to run a servo.

#include  // Include the Servo library

            Servo myServo; // Create a servo object
            
            void setup() {
                myServo.attach(D3); // Attach servo to pin D3
            }
            
            void loop() {
                myServo.write(0);   // Move servo to 0°
                delay(1000);        // Wait for a second
                myServo.write(180); // Move servo to 180°
                delay(1000);        // Wait for a second
            }

Uploaded Code

beam

Servo Motion sensed

Spirit level
Learning: Ai gave a perfect code but it didn't work in the previous attemps. I realized that the code AI generated did not my requirements of including the library thus I had to promt AI: to include the SERVO LIBRARY to the code. This gave me a perfect code. However, it was a learning to not rely on Ai completely. gimp1

Coding: Part 2

In my Input Device week, I used a touch sensor to sense the output. Find the detalied documentation Week 09: Input devices In a small segment my Final Project uses basically a touch sensor to trigger a servo and a LED. Thus, I went forward with combining my learnings of touch sensor and servo

gimp1

As per the plan I began Coding, generating a Code using Ai prompt: Generate a code to run a servo motor using a servo motor using a serial monitor.

Error Code

beam

Final Code

Spirit level

Learnings: Again AI gave an error, I learnt that previously Aurdino Uno allowed pin naming as 1, 2, 3.. for a Xaio board. However the new update required the pin naming as D1, D2, D3. Thus, the final code genrated was-

#include 

        #define TOUCH_SENSOR_PIN D0  // Touch sensor connected to D0
        #define SERVO_PIN D3         // Servo connected to D3
        
        Servo myServo;
        
        void setup() {
            Serial.begin(115200);  // Start Serial Monitor
            myServo.attach(SERVO_PIN); // Attach the servo to pin D3
            myServo.write(0); // Start at 0°
        }
        
        void loop() {
            int touchValue = analogRead(TOUCH_SENSOR_PIN); // Read touch sensor value
            Serial.print("Touch Sensor Value: ");
            Serial.println(touchValue); // Display the value on Serial Monitor
        
            if (touchValue > 600) { // Adjust threshold based on sensor response
                Serial.println("Touch detected! Rotating Servo...");
                myServo.write(180);  // Move to 180°
                delay(3000);         // Wait for 3 seconds
                myServo.write(0);    // Move back to 0°
                Serial.println("Returning to 0°");
            }
        }
        



In the similar manner, I tried running an LED with the code. LED OUTPUT: beam

beam
Spirit level

Solenoid

During the lectures, I was mesmerized by the robotic_xylophone project. I learnt about how a soleoind works. A solenoid is an electromechanical device that converts electrical energy into linear motion. It consists of a coil of wire wound around a movable metal core (plunger).
beam

When electric current flows through the coil, it creates a magnetic field.

beam

When strong magnets are coiled around a wire, the movement of magnet generates electricity.

Spirit level

Here, I decides to experiment with the solonoid. For which I referred to existing examples. I found a very helpful website which showed a detailed description of how to make a solenoid coil. You can refer to the link to know more, here.

Cut a pen to a tube

beam

Laser cut a loop to supports sides of pen tube

Spirit level

Later, I rolled a Magnet wire 26 to 28 gauge to the pen loop.

Spirit level

Ripped of the insulator from the wire.

beam

Then used a DC Voltage motor, I set the value to 12V

Spirit level

Connected the pins to the two ends of the wire.

beam

Placed a Magnet to check if its functioning.

Spirit level










Lipo lion batteries, BMS battery management system (soc, soh) AD to d transformer dc> bridge rectifiers, socket adapter > batteries, pub hubs

measure multimeters: led array, rgb. common cathode c, anode. led oled l amoled. Solenoid- canh nd canl Maglev train in japan.

dc motor, bldc mogtors, bo motors

shape builders soft robotics

How Inductors work