-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.php
More file actions
29 lines (26 loc) · 786 Bytes
/
config.php
File metadata and controls
29 lines (26 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/*
WeMo Web Controller
by Paul Loeb
@loebpaul
https://github.com/loebpaul/wemo-web-controller
I am not affiliated with WeMo or Belkin, Inc. in any way.
*/
// Your Twilio account SID
DEFINE('TWILIO_ACCOUNT_SID','');
// Your Twilio auth token
DEFINE('TWILIO_AUTH_TOKEN','');
// Your Twilio Phone Number (SMS messages are sent FROM this number)
DEFINE('TWILIO_PHONE_NUMBER','+15555555555');
// Your IFTTT email address or username
DEFINE('IFTTT_LOGIN', '');
// Your IFTTT password
DEFINE('IFTTT_PASSWORD', '');
// Your IFTTT Phone Number (SMS messages are sent TO this number)
DEFINE('IFTTT_PHONE_NUMBER','+15555555555');
// An array of your WeMo switch names and associated IFTTT recipes
$IFTTT_RECIPES = array(
"Office" => "12345",
"Bedroom" => "67890"
);
?>