Panic Button
is an Android application that targets Android Things that integrates with Twilio to perform phone calls or send SMS's when a physical button is pressed.
This project is based on the SimplePio sample open sourced by Google.
The application supports a short press
and a long press
of the hardware button.
The short press
will trigger an SMS, while a long press
will trigger a phone call request.
The hardware and circuit is the exact same than the SimplePio project.
For this project you will need a Twilio account. The free/trial account provides enough resources to experiment and play around with this application.
You need to setup a Twilio number with phone calls and SMS capabilities. Also, an API Key needs to be created, so you don't expose your general account token.
You will need the following information from your account:
- AccountSid
- API key
- API Secret
- Phone number with call and SMS capabilities.
- Verified phone number to act as the receiver.
Open the gradle.properties
file and enter your configuration.
PANIC_BUTTON_PHONE_NUMBER_FROM="{ORIGIN PHONE NUMBER}"
PANIC_BUTTON_PHONE_NUMBER_TO="{TARGET PHONE NUMBER}"
PANIC_BUTTON_TWILIO_ACCOUNT="{TWILIO ACCOUNT SID}"
PANIC_BUTTON_TWILIO_API_KEY="{TWILIO API KEY}"
PANIC_BUTTON_TWILIO_API_SECRET="{YOUR TWILIO API SECRET}"
The application/build.gradle
will read this properties and make them available to the app through BuildConfig
fields.
Note that values in the file must be enclosed by quotes.
PANIC_BUTTON_PHONE_NUMBER_FROM="+1234567890"
...
Make sure your device is on and connect to it through ADB
$ adb connect {YOUR DEVICE IP}
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
connected to {YOUR DEVICE IP}:5555
Build the application and install it on the device
$ ./gradlew installDebug
Manually start the main activity (this will happen automatically if the device is rebooted)
$ adb shell am start com.robertoestivill.panicbutton/.PanicButtonActivity
- Fix
Url
paremter in the Calls Twilio request; - Throtle multiple clicks to avoid multiple simultaneous requests
- Retry logic on
IOException
's - Evaluate
long press
vsDouble/Triple press
actions
MIT License
Copyright (c) 2017 Roberto Estivill
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.