Show HN: Squirrel feeder based on Raspberry Pi
blog.ulfster.com
Show HN: Squirrel feeder based on Raspberry Pi
1–10 of 10 posts
Re: Show HN: Squirrel feeder based on Raspberry Pi
#2If anyone else has used motion on a Raspberry Pi, have you have any issues staying connected to wi-fi? I was running motion on my Raspberry Pi, trying to do something similar, and found that within 24 hours the wifi module would disconnect and stay down. I would have to reboot.
Without having motion running, I can stay connected to wifi for weeks at a time with the same pi/router/network. I haven't found a solution for this yet.
Re: Show HN: Squirrel feeder based on Raspberry Pi
#3Awesome work, that squirrel looks happy! If anyone else has used motion on a Raspberry Pi, have you have any issues staying connected to wi-fi? I was running motion on my Raspberry Pi, trying to do something similar, and found that within 24 hours the wifi module would disconnect and stay down. I would have to reboot. Without having motion running, I can stay connected to wifi for weeks at a time with the same pi/rou…
#put this in cron daily? #2:10 am sound okay? #10 2 * * *
A better solution might be to check the wifi status periodically and take some action based on the status.
Even better, find out why it is happening and fix that.
Even better-er, add some sort of anti-squirrel weapon.
Re: Show HN: Squirrel feeder based on Raspberry Pi
#4I wonder how hard it'd be to do 'squirrel recognition' with the camera
Re: Show HN: Squirrel feeder based on Raspberry Pi
#5The other problem is allocating peanuts to other birds (chickadees, nuthatches, cardinals, etc) while not giving too many to the blue jays. However, there's a project I ran across from CalTech that can determine the type of bird in front of a camera via computer vision[1][2][3]. Not sure why the creator of the squirrel project used a camera though when a cheaper, more robust sensor would work unless he was eventually thinking of extending its usage for more than simple motion detection.
[1] http://vision.caltech.edu/visipedia/20q.html
Re: Show HN: Squirrel feeder based on Raspberry Pi
#6Awesome work, that squirrel looks happy! If anyone else has used motion on a Raspberry Pi, have you have any issues staying connected to wi-fi? I was running motion on my Raspberry Pi, trying to do something similar, and found that within 24 hours the wifi module would disconnect and stay down. I would have to reboot. Without having motion running, I can stay connected to wifi for weeks at a time with the same pi/rou…
#!/bin/bash sudo reboot #put this in cron daily? #2:10 am sound okay? #10 2 * * * A better solution might be to check the wifi status periodically and take some action based on the status. Even better, find out why it is happening and fix that. Even better-er, add some sort of anti-squirrel weapon.
Re: Show HN: Squirrel feeder based on Raspberry Pi
#7Earlier quoted context omitted.
#!/bin/bash sudo reboot #put this in cron daily? #2:10 am sound okay? #10 2 * * * A better solution might be to check the wifi status periodically and take some action based on the status. Even better, find out why it is happening and fix that. Even better-er, add some sort of anti-squirrel weapon.
https://xkcd.com/1495/
PS to OP. You might need to fiddle with /etc/sudoers in order that cron can be allowed to reboot the machine.
Re: Show HN: Squirrel feeder based on Raspberry Pi
#8Awesome work, that squirrel looks happy! If anyone else has used motion on a Raspberry Pi, have you have any issues staying connected to wi-fi? I was running motion on my Raspberry Pi, trying to do something similar, and found that within 24 hours the wifi module would disconnect and stay down. I would have to reboot. Without having motion running, I can stay connected to wifi for weeks at a time with the same pi/rou…
#!/bin/bash sudo reboot #put this in cron daily? #2:10 am sound okay? #10 2 * * * A better solution might be to check the wifi status periodically and take some action based on the status. Even better, find out why it is happening and fix that. Even better-er, add some sort of anti-squirrel weapon.
I will have to try again to figure out why this is happening, there must be an explanation.
Re: Show HN: Squirrel feeder based on Raspberry Pi
#9Earlier quoted context omitted.
#!/bin/bash sudo reboot #put this in cron daily? #2:10 am sound okay? #10 2 * * * A better solution might be to check the wifi status periodically and take some action based on the status. Even better, find out why it is happening and fix that. Even better-er, add some sort of anti-squirrel weapon.
https://xkcd.com/1495/
Re: Show HN: Squirrel feeder based on Raspberry Pi
#10I've been mulling about doing something like that for blue jays and peanuts to ration out their allotment in a sustainable manner. A family of blue jays (or most birds in the Crow [Corvidae] family) will rapidly hoard whatever you give them and finish off a large pile of peanuts within hours. Unlike other birds that also visit the pile of peanuts I leave out, they have no intentions of eating most of those peanuts as…
[1] http://blog.ulfster.com/post/114942851719/squirrel-feeder-v2...