PiPlanter 2 | Updating Dependencies

In addition to the directions in this post on getting the ADC working, the following must be run to get the current version of the PiPlanter up and running. sudo apt-get install python-imaging python-imaging-tk python-pip python-dev git apache2 mysql-server php5 php5-mysql python-mysqldb sudo python-serial sudo pip install tweepy apscheduler spidev wiringpi wget https://gdata-python-client.googlecode.com/files/gdata-2.0.18.tar.gz tar -xzvf gdata-2.0.18.tar.gz…

Continue reading →

PiPlanter 2 | Adding Youtube Upload Functionality

In order to keep things moving quickly, I’ve decided to take a shortcut when it comes to uploading timelapse videos to youtube. I’ve decided to basically create a function that passes data to youtube-upload, a command line utility for linux that can upload videos very simply. Here’s the function: def UploadVideo(video,email,password): humantime = str(datetime.now().strftime("%m/%d/%Y")) title…

Continue reading →

PiPlanter 2 | Progress Update

I’m almost done with a very stable version of the Python code running the PiPlanter. There are many specific differences between this version of the python code and the version I wrote and implemented last summer, but the main one is that I tried to write functions for pretty much every task I wanted to…

Continue reading →