I’ve started this project when my old mobile phone died in security system, based on PIC microcontroller.
Instead of looking for another working old phone with a serial interface (and also because I had one spare Raspberry Pi 1 which was replaced by Raspberry Pi 2), I’ve decided to go “raspberry way”.
So, after a bit I’ve ended with such features:
Schematic of a controller:
First power regulator is used to charge a Lead-acid battery via standby voltage (for a 6.6V battery its between 6.75 and 6.9V) which cant be set via potentiometer (R1). Second, 5V low dropout power regulator is used to power “Raspberry-pi”. Optocoupler is used to detect power loss. GSM modem – currently I’m using “Huawei Technologies Co., Ltd. E220 HSDPA Modem / E230/E270/E870 HSDPA/HSUPA” modem. But any, which works in Linux with gnokii will do.
Eagle shematics and pcb together with the source code can be found in GitHub:
https://github.com/Seitanas/abp
PCB is not very elegant one – it was created by a crude Eagle autorouter. Perhaps someday i will route it by hand.
Some notes on a software:
SMS susbsystem uses libgnokii library. Also you need wiring-pi libraries to compile software.
All system messages are written to syslog. All configuration is made in src/config.h file before compilation. Available SMS commands:
arm password (e.g arm 1111) – system is armed instantly (useful if you forgot to arm system by pressing arm button).
disarm password – armed system deactivates after receiving SMS.
status password – system responds with device uptime and temperature status after receiving SMS.
siren on password – siren is turned on.
siren off password – siren is turned off.
For a temperature sensors:
You need to have w1-gpio w1-therm modules loaded. After that, look for a devices in /sys/bus/w1/devices/ – you will have to enter unique names of your sensors listed there (usually starts with “28-0“) to config.h file.
zaislas. 😀