Maker Pro
BeagleBoard

Make an IoT Automated Pet Feeder With Beaglebone Green

June 16, 2017 by Ryan Jones
Share
banner

This automated IoT pet treat dispenser sends you an email when your dog or cat takes a treat.

This automated IoT pet feeder will send you an email when your dog or cat takes a treat. See how it works in the video below!

Why?

Lately, I've been out of the house more than usual so I've been feeling a little guilty about my pets being home alone. To ensure their health and wellness, I attempted to build a Beaglebone Beagle-Feeding device. I'm not much of a mechanical engineer, so it ended up being more of a treat dispenser since this prototype couldn't handle very much food.


Nevertheless, your pet doesn't have to be alone, either! This model includes an OLED display that asks your pet if they're hungry. All you have to do is send them away to pet boarding school to learn to read English, and they'll be on their way to home automation!

The components!

How?

The Beaglebone Green Wireless Google IoT Kit comes with a "Grove Cape" that allows for easy connection between the Beaglebone and the components. The Grove Cape can be connected without any extra components to the included Grove mini-PCBs, like the PIR sensor, pushbutton, and OLED display. This allows the project to come together quickly.

The Seeed Studio IoT kit!

Before moving forward with our program and circuitry, we have to make sure our board is updated and includes everything we need to run our program. We will be using Python within the included Cloud 9 IDE. We just need to execute a few commands within Cloud 9's terminal in the following order:

apt-get update apt-get upgrade apt-get install links links http://www.google.com/accounts/DisplayUnlockCaptcha apt-get install libssl-dev tcltls swaks

Okay, let's jump right in and plug the PIR sensor into GPIO 115, the pushbutton into GPIO 117, and the OLED into any of the I2C connectors. You will need to place the PIR sensor at the front of the device, and locate the OLED display for easy reading. You should place the pushbutton underneath an elevated platform.

When the PIR detects motion it will print "Are you hungry?" on the OLED display. If your pet determines that it is, in fact, hungry and steps onto the platform, the pushbutton engages and a solenoid is triggered to release food into the bowl. Then the OLED prints "Enjoy, Hal!" and an email is sent to your account informing you of your pet's eating habits.

While the Grove connections work great for most of our project, we do not have a signal capable of driving a solenoid. Instead, we will create a custom relay circuit and connect it to GPIO 51. Though we could have used a transistor to directly actuate the solenoid, I didn't have one with an adequate collector current rating, so instead the transistor drives a relay coil, and the relay controls the solenoid.

The included Grove Cape makes for easy connections

In general, NPN transistors need a base-to-emitter voltage of at least 0.6V to leave the cutoff region and allow current to flow from collector to emitter. The resistor is used to limit the current flowing into the transistor's base (too much current could cause damage).

With the transistor out of cutoff, our 5V supply connected to our relay coil has a path to ground through the BJT's collector and emitter. The diode protects the transistor from dangerous voltage spikes that occur when a transistor interrupts current flowing through an inductor.

When current flows through the relay coil, the relay's switch contact moves from the normally open terminal to the normally closed terminal. This allows current from the 12V power supply to flow through the solenoid's coil, and this in turn causes the plunger to move.

The plunger is attached to some sort of apparatus that allows treats to fall into your pet's dish. You should receive an email notification within seconds that your pet is chomping away! For more information on sending and receiving emails, check out this tutorial from EasyEngine.

You can make a feeder contraption out of just about anything, so you'll have to get creative. This is just a very, very rough prototype. The Beagle Feeder can be greatly improved with a better feeding mechanism controlled by a servo motor, or even with a webcam that lets you check in on your pets to be sure they really are eating! The possibilities are endless.

My poor mechanical design

import mraa

import time

import pyupm_grove as grove

from subprocess import call

#import oled display module

import pyupm_i2clcd as upmLCD

#parameter 1 means that we are using I2C_2 , and 0x3c is the address of OLED Display

myLCD = upmLCD.SSD1327(1, 0x3c)

pir = mraa.Gpio(73)

pir.dir(mraa.DIR_IN)

button = mraa.Gpio(71)

relay = mraa.Pwm(62)

relay.period_us(700)

relay.enable(True)

myLCD.setGrayLevel(12)

def setup():
# Nothing to do here
pass

while True:

x = pir.read()

y = button.read()

print x

print y

if (x == 1):

myLCD.setCursor(3, 3)

myLCD.write("Are you")

myLCD.setCursor(5, 3)

myLCD.write("Hungry?")

#time.sleep(2)

elif (y == 1):

relay.write(1)

myLCD.setCursor(3, 3)

myLCD.write("Enjoy, ")

myLCD.setCursor(5, 3)

myLCD.write(" Hal! ")

#call("swaks -4 --server smtp.gmail.com:587 --from [email protected] --to [email protected] -tls --auth LOGIN --auth-user [email protected] --auth-password your-password --header \"Subject: Hal got himself a snack!\" --body \"He loves his snacks\"",shell=True)

time.sleep(2)

relay.write(0)

time.sleep(15)

else :

relay.write(0)

#myLCD.clear()

#time.sleep(2)

myLCD.setCursor(3, 3)

myLCD.write(" ")

myLCD.setCursor(5, 3)

myLCD.write(" ")

#myLCD.clear()


Author

Avatar
Ryan Jones

Start my career as an Audio Engineer, now turned professional maker!

Related Content

Comments


You May Also Like