Industrial manufacturing
Industrial Internet of Things | Industrial materials | Equipment Maintenance and Repair | Industrial programming |
home  MfgRobots >> Industrial manufacturing >  >> Manufacturing Technology >> Manufacturing process

Build a Smart Robot with the Bridge Shield – Raspberry Pi & Arduino Integration

The Bridge Shield is an open‑source development board designed for students, hackers, and researchers. Paired with a Raspberry Pi or Arduino Uno, it unlocks a wide range of DIY robotics and home‑automation projects.

We’re currently supporting the project on Kickstarter – consider backing us or sharing the link below with friends and family.

Bridge Shield Kickstarter Link

Key Features (2nd Generation)

All components are mechanically designed to fit most standard Arduino Uno and Raspberry Pi shield stacks.

Projects Built So Far

What You Can Do With It

We’ve completed the first prototype and are now testing it. The second generation will bring even more powerful features. Watch our videos on the website and YouTube for details.

Getting Started: Internet‑Controlled Robot

Step 1: Set Up Your Raspberry Pi

Ingredients:

  1. Bridge Shield (or L293D board)
  2. Raspberry Pi with SD card and power supply
  3. USB or Pi camera module
  4. Robot chassis, motor clamps, nuts/bolts, peripherals
  5. 2× DC motors (BO motors)
  6. 2‑cell Li‑Ion battery (1 000–2 000 mAh)
  7. Arduino Uno (optional)
  8. ESP8266 Wi‑Fi module (optional)
  9. 1.3" OLED display (optional)

Begin by installing a web server and PHP on your Pi. Follow this instructable for detailed steps, then run:

$ sudo apt‑get update
$ sudo apt‑get install apache2 php5 libapache2-mod-php5

Verify by visiting https://your‑pi‑IP in a browser. Optionally install an FTP server:

$ sudo apt‑get install vsftpd
$ sudo nano /etc/vsftpd.conf

Make the following edits:

Restart the service:

$ sudo service vsftpd restart

Step 2: Install MPEG‑Streamer

MPEG‑Streamer streams your camera feed over the internet. Install dependencies:

$ sudo apt‑get install libjpeg8-dev imagemagick

Clone, build, and run the streamer:

$ cd ~
$ mkdir tmp
$ cd tmp
$ svn co https://svn.code.sf.net/p/mjpg-streamer/code/mjpg… mjpg-streamer
$ cd mjpg-streamer/mjpg-streamer
$ make
$ cd /home/pi/code/mjpg-streamer
$ ./mjpg_streamer -i "./input_uvc.so" -o "./output_http.so -p 8080 -w ./www"

View the stream at https://pi‑IP:8080 or https://pi‑IP:8080/?action=stream.

Step 3: Interface PHP & Python with GPIO

Install WiringPi (instructions on the official site). Then place the following files in /var/www/server/:

Edit control.html to point to the stream:

$ sudo nano /var/www/server/control.html

Replace img src with:

img src="https://pi‑IP:8080/?action=stream"

Access the page at https://pi‑IP/server/control.html. Buttons will toggle GPIO pins via the PHP script.

Step 4: Connect Hardware (Pi & Bridge Shield)

Use the Bridge Shield’s motor driver to power your motors directly from the Pi’s GPIO. Map pins as follows (example):

Mount the Shield and Pi onto the chassis, attach the Li‑Ion battery, and secure the Wi‑Fi dongle in the designated slot.

Step 5: Optional ESP8266 & Arduino UNO Home‑Automation

For Wi‑Fi control of appliances, update control.py with your ESP8266 IP and port:

$ sudo nano /var/www/server/control.py

Set:

Upload the Arduino sketch and install the Adafruit OLED libraries. Configure port forwarding on your router (e.g., Netgear) to expose the ESP8266 port. See port forwarding guide.

For deeper insight, visit the Robot Using Raspberry Pi & Bridge Shield page.

Manufacturing process

  1. Remote Weather Monitoring with Raspberry Pi 3 and PubNub
  2. Integrate TI SensorTag with Blynk via Node‑RED on Raspberry Pi Zero
  3. Control an LED with a PIR Motion Sensor on Raspberry Pi
  4. DIY Wall‑E Inspired Raspberry Pi CD‑Box Robot
  5. Gesture‑Controlled Robot Powered by Raspberry Pi
  6. Build a Wi‑Fi‑Controlled Raspberry Pi Robot with Python – Step‑by‑Step Guide
  7. Integrating Microsoft Kinect with Raspberry Pi for Real‑Time Human Detection on the Sonbi Robot
  8. Build an Android‑Controlled Remote Vehicle with Raspberry Pi Motor Shield
  9. Advanced Snow Plow Robot for Efficient Winter Clearing
  10. Autonomous Sudoku Solving Robot