Code Monkey home page Code Monkey logo

sra-board-hardware-design's Introduction

Stargazers Forks Issues License


Logo

SRA Development Board

ESP32-based Development Board
EAGLE · Gerber · Images · 3D Model

Order from OSH Park

SRA Board 2022

The SRA board is a development board based on ESP32 with on-board peripherals like programmable LEDs and switches, sensor ports for Line Sensor Array and MPU-6050, protection circuit for over-current and reverse voltage and motor drivers.

Table of Contents

About the Project

  • This development board is used for the Wall-E and MARIO workshops conducted by SRA.
  • Designed using EAGLE. The schematic and board files are here.
  • Resources for previous work. For more details of the SRA board 2019, checkout this link.
  • The SRA board 2020 images can be found here.

Getting Started with a Development Board

In general, every development board has the following basic features:

  • Power Supply Unit

    • Microcontrollers (MCUs) usually run on 3.3V or 5V while input to a development board is normally 12V for motor control.
    • So, a power section which converts this 12V to standard levels like 5V/3.3V for MCU and sensors is present.
    • The previous edition of the SRA board (2019) used the LM7805 linear voltage regulator, for stepping down from 12V to 5V; this powered the ESP32.
    • Further, this 5V was converted to 3.3V using the LD33 linear voltage regulator, used by the sensor port.
  • Motor Driver

    • Motors usually run on 12V and MCU output is generally 5V/3.3V. So, an external motor driver circuitry is required to control motors according to the MCU input.
    • The SRA Board 2019 used the L298N IC for motor-control, which is a BJT-based H-Bridge motor driver.
  • Sensor Port

    • According to the external sensor types, usually development boards have onboard sensor ports where the sensors can be connected easily using FRC connector.
    • The SRA Board 2019 had two sensor ports - one for a LSA (line sensor array) and the second for the MPU6050.
  • Protection against Reverse Voltage and Over Current

    • The SRA Board 2019 used diodes for reverse voltage protection in the power-line.
    • For the overcurrent protection of MCU and motor driver circuit, fuses of 300mA and 3A were used respectively.
  • Programmable Switches and LEDs

    • Every development board should have some programmable switches and LEDs for testing, control and debugging purposes.
    • The previous edition had a pair of programmable switches and programmable LEDs each.
  • Power Switch

    • The SRA Board 2019 had a power switch for the motor driver, using which power supply to the motor driver can be toggled. Similarly, there was a switch for the ESP32 MCU.

Now that we covered basics of development boards, let us talk about the changes made in the new design.

Major Changes for 2020

Feature SRA Board 2019 SRA Board 2020
12V to 5V LM7805 Linear Regulator LM2596 Buck Convertor
5V to 3.3V LD33 AMS1117
Reverse Voltage Protection Diodes P-MOSFET
Motor Driver L298N TB6612FNG
No. of Motor Channels 2 4
No. of Switches 2 4
No. of LEDs 2 8
  • 7805 (5V linear regulator) to LM2596 Buck Convertor

    • The greater efficiency, output current and reliability of LM2596 were the reasons for this change.
    • The efficiency of LM2596 is up to 92% which is significantly better than 7805. The LM2596 can provide current up to 3A, so the MARIO workshop manipulator can now be run using onboard regulator.
  • LD33 (3.3V) to AMS1117:

    • The previous edition used the LD33 IC to step down from 5V to 3.3V; several discussions resulted in the shift to more compact, reliable AMS1117(SOT-23) linear voltage regulator. (AMS1117 is used in the ESP32-DevKitC V4 module)
  • Reverse voltage protection: Diodes to P-MOSFET

    • Diodes in series to the power line are inefficient as compare to a P-MOSFET. Dut to the usage of high-rated motors, it was difficult to manage the diode size and the current rating. (As the current rating of diode increases, its size also increases.)
    • So, the new edition uses the P-MOSFET instead of a diode, which is more efficient and can handle more current.
  • L298N to TB6612FNG

    • L298N is a BJT-based H-bridge motor driver but it is less efficient as compared to the new MOS-based TB6612FNG.
    • The detailed comparison is shown below. As you can see the efficiency of TB6612FNG can reach up to 91-95% which is significantly higher than the 40-70% efficiency of L298N.
    • The only drawback of TB6612FNG is the less continuous current which is equal to 1.2A. So, for higher current capacity motors, two TB6612FNG are given on the board, which can be used in parallel mode to double the current capacity to 2.4A.

  • Motor Driver Modes

    • The new edition has 2x TB6612FNG motor drivers which allow a maximum of 4 motors to be controlled. This motor driver is characterized by its operation in two modes - Normal mode and Parallel mode:

      1. Normal Mode

      • As discussed earlier, the new design has two motor drivers. Each TB6612FNG can control two motors. Therefore, using two motor driver one can control 4 motors using 8 GPIO's of ESP32.
      • E.g.: If pin 32 is HIGH(IN1 = HIHG) and pin 33 is low(IN2 = LOW) then motor 1 moves in the forward direction.
      • So in normal mode, 4 motors can be connected to the board, with a per channel/motor current capacity of 1.2A.

      1. Parallel Mode

      • The parallel mode is a special feature, used for high-rated motors, requiring more than the 1.2A current limit.
      • In this mode, the channel's directional pins and output pins are shorted; only one motor is connected to a motor driver i.e. two channels, giving a current capacity of 2.4A. Thus, two high rated motors can be controlled using ESP32.
      • Note: The directional pin shorting is done by a manual DPDT switch. If the user turns on TB_A switch then the first motor driver goes into the parallel mode and its directional pins are shorted, where GPIO connections are IN1 = IN3 = 25 and IN2 = IN4 = 26. If TB_A switch is off, then the first motor driver goes into normal mode where IN1 = 32: IN2 = 33: IN3 = 25: IN4 = 26. This is all done automatically. Also for parallel mode, the J1, J2, J3 and J4 junctions need to be shorted.

  • Moving back to the vintage Bar-graph LEDs and more switches

    • The previous edition used a pair of programmable switches and LEDs each but in this year, the provision for a bar graph LED has been made. It has 10 LEDs out of which two are reserved for 5V and 3.3V voltage indication.
    • So there are 8 programmable LEDs on the board. These LEDs multiplexed with directional pins of the two motor drivers to save pins.
    • Directional pins? >> Every motor driver channel has two directional pins IN1, IN2. If IN1 is high and IN2 is low then motors move in a clockwise direction and there are 4 channels on the board, so 4 * 2 = 8 directional pins are multiplexed with 8 programmable LEDs.
    • With 8 LEDs in hand, debugging get easier. Some examples -
      1. According to the line sensor array (LSA) data, one can program 4 LEDs to turn on when the line sensor detects white and turn off for black- line following debugging.
      2. If a motor is moving in a forward direction, the dedicated LEDs will be indicating IN1 is high and IN2 is low - motor control debugging.

Notable problems in the SRA Board 2019

  • The Simultaneous Power Supply Issue

    • ESP32 can be power using two ways - one via the USB port given on the ESP32 and two via providing a voltage on VIN pin.
    • In the SRA Board 2019, if simultaneous power (on both the above sources) was provided to the ESP32 then it won't work as there was no circuitry for handling such a condition.
    • The following disclaimer from the official ESP32 documentation made it essential to design some external circuit to handle this condition and accordingly pass only one signal to the ESP32 board.

    The power supply must be provided using one and only one of the above options.Otherwise, the board and/or the power supply source can be damaged.

    • Solution

      • There is an inbuilt BAT760 diode on the USB line on ESP32. If different voltages are applied at Vusb and Vin, then the voltage with bigger magnitude will be given to LD1117 (LDO on ESP32); often the voltage will be the same on Vin and Vusb i.e 5V.
      • But, the usage of the 1N5417 diode on the Vin path, which has more Vf (forward voltage) than the BAT760, will create a voltage indifference and in a simultaneous power supply condition, USB will be selected as its voltage will be more than Vin.

3D Models

Milestones

  • Designing of the prototype board
  • Modular testing of the circuit
  • Testing of prototype board
  • Final version

Contributors

Acknowledgements and Resources

License

sra-board-hardware-design's People

Contributors

ombhilare999 avatar dhairyashah1 avatar sagarchotalia avatar aniruddha1261 avatar laukik-hase avatar omsheladia avatar chinmaylonkar avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.