CodeX

Everything connected with Tech & Code. Follow to join our 1M+ monthly readers

Follow publication

Member-only story

How to create your own Arduino Library

At some stage you are going to write some code that you want to package up as a library. This makes it easy for you and others to use the software, hides complexity and is a way to participate in the global maker community. There are a few exisiting guides about how to do this, we have focussed on material not covered by these beginner tutorials. A library is a collection of header (.h) and optional program (.cpp) files located in a single directory.

Sketch First

Start with a working sketch, don’t write the library until you know that your code works. Using a library can make things harder to debug, and nobody wants that! As an example to work through, we are going to create an Arduino library for the Reefwing Motor Shield (Figure 2) that connects to an UNO.

The Reefwing motor shield uses the L293B h-bridge chip and includes a voltage divider circuit to monitor the battery voltage. With LiPo batteries you don’t want to over discharge them as it can wreck the battery, or worse they can catch fire and explode!

Figure 1. Bidirectional DC Motor Control (credit).

One L293B chip allows us to control two bidirectional motors with a stall current up to 2A. It expects an RMS current of 1A. In the L293, motor direction is controlled by the state of two input pins (Figure 1) and speed is controlled by applying a PWM signal to the enable pin.

Figure 2. Reefwing UNO Motor Shield v1.0

The control pins for Motor 1 (M1) and the pin connections for the UNO (in bold) on our shield are:

  • D3 — Chip Enable M1
  • D2 — M1 Input 1 (D in Figure 1)
  • D4 — M1 Input 2 (C in Figure 1)
  • M1 Output 1 (to one terminal of M1)
  • M1 Output 2 (to the other terminal of M1)

Similarly for Motor 2 (M2):

  • D11 — Chip Enable M2
  • D7 — M2 Input 3

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

CodeX
CodeX

Published in CodeX

Everything connected with Tech & Code. Follow to join our 1M+ monthly readers

David Such
David Such

Written by David Such

Reefwing Software · Embedded Systems Engineer · iOS & AI Development · Robotics · Drones · Arduino · Raspberry Pi · Flight Control

No responses yet

Write a response