#hack4change
Explore tagged Tumblr posts
Text
ATX Hack for Change
By Robert
This June, BlueChasm went to ATX Hack for Change Hackathon as a sponsor and Project Champion.
As a sponsor, we got to support this great cause which is a part of the National Day of Civic Hacking. This event is about getting great minds together and building something for the civil good. It ranges from mobile apps to websites and even hardware hacks that are meant to help the public.
This hackathon is different than others because unlike regular hackathons, there isn’t a “Grand Prize” to be awarded to the best idea at the end of the event. This hackathon is about building something to better our city and citizens of Austin. Project Champions come with an idea and present it to the crowd of talented programmers and designers at the beginning of the event. Shortly after, teams form and people join whichever project they like the most/are inspired by and they lend their skills to make the project come to life.
At ATX Hack for Change, BlueChasm was selected as a Project Champion. We came up with the idea of a smart sprinkler system that would not only check for the weather conditions but it would also take into consideration the city’s watering restrictions which are dictated by the Water Conservation Department.

With this project we hoped to help both the city and the citizens to save money and conserve water for commercial properties, retail properties, multifamily housing, farmers, greenhouses and single family residential which are required to irrigate often. They would see a big difference in their water consumption which would help them save money and protect the environment.
We had an amazing team of Engineering students and IT professionals that we teamed with. The team had fun building the software and developing on the hardware.

Most of the Project Champions came with their projects which they wanted to develop into full blown services or products. Our project was more of a way to spread the idea of smart watering devices and helping cities with their water conservation. Mainly by developing an API that would make it easier for developers to build water-smart devices.

In the end, the entire team had fun and some even decided to continue working on hardware related hacks. We had an amazing weekend at St.Edwards University and it was inspiring to see so many developers and designers work for a weekend in the spirit of civil good. We are definitely planning to attend next year’s ATX Hack for Change event!
1 note
·
View note
Photo

Scored a copy of the newest #tennessee blue book at this weekends #hack4change #nashville
1 note
·
View note
Text
Austin Water Conservation API
By Robert
BlueChasm will be a Project Champion at this year’s ATX Hack For Change. Our concept is to create a sprinkler system that will automatically turn on and off based on a variety of factors such as weather data, city watering restrictions and soil moisture.
The City of Austin Water Conservation Department currently has a website where you can enter your details and get your watering schedule. They also have a javascript and JSON object that they update depending on the city’s current water conservation stage. What they do not have is an API that is capable of getting http requests and responding with your watering schedule depending on your situation. The engineers here at BlueChasm took the liberty to create such API pulling information from the Austin Water Conservation Department and we decided to make it public. Here is the API documentation for anyone who wishes to get Austin’s most updated watering regulations with a simple http POST request.
curl -H "Content-Type: application/json" -X POST -d '{"address":5,"type":1}' http://austin-water-rules.mybluemix.net/schedule
The JSON that is expected follows this format:
{
"address":X,
"type":Y
}
where X is the last digit of your address (0-9) and Y is the type of building that you are.
Here is the building type list:
0 = Residential 1 = Commercial / Multifamily 2 = Public School
This will return the watering schedule based on this set of rules for automatic watering which is what we will be doing at the hackathon.
This a response example:
[
{"Watering Day:":"Friday"},
{"Watering Times:":"From: 7:00 PM To: 12:00 AM"}
]
1 note
·
View note