4 Myths of the Apple Watch | WiFi, Battery, Function, Waterproofing
All over the internet there are four issues that keep arising with regards to false information about the Apple Watch. I’m a REAL Apple Watch user and I would like to dispel them below.
1. You can’t use the Apple Watch without being near Bluetooth range of your phone
False. The Apple Watch uses WiFi when not connected directly to your device. Yes, you need to first pair your device with the phone and then you can walk all over as long as you are connected to a previously setup WiFi network (on the phone).
Apple Watch uses Bluetooth® wireless technology to connect to its paired iPhone and uses the iPhone for many wireless functions. Apple Watch can’t configure new Wi-Fi networks on its own, but it can connect to Wi-Fi networks you’ve set up on the paired iPhone.
2. The battery will not last a day
False. I have had an Apple Watch for three weeks and not once has it gone into reserve mode. I usually end up with 30-50% of my battery left over. I also use the watch a lot using Siri, ‘Workout mode’ for 30 minutes a day (it uses the heart rate monitor to calculate calories), get a ton of emails and texts etc. I’m not quite sure why this is still talked about.

After a heavy day of use at 4:30pm from 6:00am.
3. The Apple Watch doesn’t do much
This is quite hilarious to me as I literally can almost do everything on my watch that I can do on my phone. Right now, my phone stays in my pocket unless the Apple Watch Siri doesn’t quite translate what I’m asking it to do so well. In conjunction with this Siri hack, I can make it do anything. Things that people don’t realize that it does are as follows:
- Check the LIVE view on an IP camera
- Control iTunes on your PC through the native Remote app
- Check my current nutrient levels through MyFitnessPal
- Pay with Apple Pay
- Make calls on the watch
- Messaging is definitely the best part. Using a button for Siri and then texting messages makes communication extremely easy
- Reminding yourself becomes extremely easy with the Reminders Nano app (with the Glance enabled).
- Take it for runs and use it as my Music Controller (it holds music) and can Bluetooth to it’s own devices.
- Home Automation is awesome with the Home Remote app. I have been in direct contact with the developer and he is extremely responsive and is in the middle of making some awesome changes to the app to enable smart iBeacons (the ability to click notification actions based on hyper-location)
4. Waterproofing
While Apple said that it’s not officially waterproof, there are countless people out there that are making swimming apps and hoping that Apple approves them.
Conclusion
We hope that clears up some confusion about the Apple Watch. Most of the major concerns people have with regards to the above issues aren’t issues. The biggest issue I have with it is going to be fixed with WatchOS 2.
- Published in Apple iPhone, Apple Watch, Siri
Siri Commands to Eventghost with the Apple Watch
The Apple watch is an amazing piece of hardware but out of the box with no modifications it and limited technology knowledge, it’s way overpriced. Most users use it as a notification device. Let’s talk about:
The best parts about it:
- It’s semi waterproof (they don’t just want people to swim in chlorine and the sea with it)
- it has great apps already (with the exception of facebook)
- Definitely lasts a day of heavy use (I’ve confirmed this)
- The screen is beautiful
- The microphone is great. It’s not perfect as it does make more mistakes than my iPhone.
The downsides are:
- The price
- The battery doesn’t come close to the pebble
- There are some quirks that I want to see fixed which I will list at the bottom in case any Apple employees are looking at this article.
How to connect the Apple Watch Siri to EventGhost or Tasker to control everything
Siri on your watch has tremendous power to control your life. Once you can get your text from the watch to your PC you can do just about anything. Until Assistant+ for the iPhone the ability to control what happened with Siri was our of our control. Since Apple has made the Apple Watch Siri separate from the iPhone Siri we can’t take advantage of the tweak. Until now…
Warning
This tutorial isn’t for everyone as it’s complex, requires a ton of patience and some determination. That said, once you do it you don’t need an Amazon Echo, tablets all over the house talking to you, etc. All of it can be controlled for your watch.
Why should you do it?
The Apple Watch Siri restricts you from sending email, querying websites, and requires the dreaded ‘handoff’. I want my watch to do everything while leaving my phone in my pocket. I currently control my iTunes Windows PC by searching with my voice for music but you can literally DO ANYTHING. You could combine it with scraping software like kimono labs, vera for home automation etc. You could get an image from your webcams and email it to yourself (the Watch Mail app lets you view images).
Two Versions of this solution:
A. For those Canadians with no international texting:
- A separate jailbroken iCloud iOS device running iOS 7-8 (I’m using an iPad)
- A gmail account (free)
- Zapier (free)
- Slight php knowledge (priceless) with access to a server
- An always on (or when you want the commands) home PC with EventGhost and Autoremote installed. You could also send messages to an Android device with Tasker and Autoremote installed instead.
*For more detailed instructions see below
B. If you have a US Texting Plan
- Setup a new user called Jarvis and with the phone number of IFTTT when you setup the SMS channel
- Setup ifttt.com with the SMS trigger and then to a Maker Web request which will be your EventGhost URL with AutoRemote installed. This is a way cleaner solution.
* Basic Canadian Number Workaround Outline
- Create a new contact in your contacts called whatever. I used ‘Jarvis‘. This mobile number is your own.
- Install iForward onto your always on iCloud device (I used an iPad) to forward messages to your gmail account.
- Go to your Zapier account and set up a new zap from an Zapier email to a WebHook (Post). The webhook will go to a webserver that will parse the command for the actual Siri command and then forward the resulting command to your Android device or Eventghost PC.
- Your webserver will look something like:[reveal title=”Webserver Script PHP To Parse The Command” open=”false,true” color=”grey-lite”]<?
//get message
function get_string_between($string, $start, $end){
$string = ” “.$string;
$ini = strpos($string,$start);
if ($ini == 0) return “”;
$ini += strlen($start);
$len = strpos($string,$end,$ini) – $ini;
return substr($string,$ini,$len);
}
$message= $_POST[‘message’];
$fullstring = $message;
$fullstring= str_replace(array(“\r\n”, “\r”, “\n”), “”, $fullstring);
$parsed = get_string_between($fullstring, “5555555555): “, ” New SMS at “);
$parsed = urldecode((string)$parsed);
switch ($parsed){
case $parsed==”Play music”:
header( ‘Location: http://myurl:33/touchcontrol/json/executebutton?device=Macros&button=Play’ ) ;
break;
case $parsed==”Play some music”:
header( ‘Location: http://myurl:33/touchcontrol/json/executebutton?device=Macros&button=Play’ ) ;
break;
case $parsed==”Pause music”:
header( ‘Location: http://myurl:33/touchcontrol/json/executebutton?device=Macros&button=Play’ ) ;
break;
case $parsed==”Pause the music”:
header( ‘Location: http://myurl:33/touchcontrol/json/executebutton?device=Macros&button=Play’ ) ;
break;
case $parsed==”Next song”:
header( ‘Location: http://myurl:33/touchcontrol/json/executebutton?device=Macros&button=Next’) ;
break;
case $parsed==”Play next song”:
header( ‘Location: http://myurl:33/touchcontrol/json/executebutton?device=Macros&button=Next’) ;
break;
case $parsed==”Play next song”:
header( ‘Location: http://myurl/touchcontrol/json/executebutton?device=Macros&button=Next’) ;
break;
case $parsed==”Play slideshow”:
header( ‘Location: http://myurl/touchcontrol/json/executebutton?device=Macros&button=CPUs%20slideshow’) ;
break;
case $parsed==”Start slideshow”:
header( ‘Location: http://myurl:33/touchcontrol/json/executebutton?device=Macros&button=CPUs%20slideshow’ ) ;
break;
case $parsed==”Start a slideshow”:
header( ‘Location: http://myurl:33/touchcontrol/json/executebutton?device=Macros&button=CPUs%20slideshow’ ) ;
break;
case $parsed==”Play dance music”:
header( ‘Location: http://myurl:33/touchcontrol/json/executebutton?device=Macros&button=dance’) ;
break;
case $parsed== “Play kids music”:
header( ‘Location: http://myurl:33/touchcontrol/json/executebutton?device=Macros&button=Kids%20Music’ ) ;
break;
case $parsed==”Play radio”:
header( ‘Location: http://myurl:33/touchcontrol/json/executebutton?device=Macros&button=radio’ ) ;
break;
case $parsed==”Play the radio”:
header( ‘Location: http://myurl:33/touchcontrol/json/executebutton?device=Macros&button=radio’ ) ;
break;
case $parsed==”Turn on sound bar”:
header( ‘Location: http://myurl:33/touchcontrol/json/executebutton?device=Macros&button=powersoundbar’ ) ;
break;
case $parsed==”Turn on the sound bar”:
header( ‘Location: http://myurl:33/touchcontrol/json/executebutton?device=Macros&button=powersoundbar’ ) ;
break;
case $parsed==”Turn on the TV”:
header( ‘Location: http://myurl:33/touchcontrol/json/executebutton?device=Macros&button=powertv’ ) ;
break;
case $parsed==”Turn on TV”:
header( ‘Location: http://myurl:33/touchcontrol/json/executebutton?device=Macros&button=powertv’ ) ;
break;
case $parsed==”Turn on the amp”:
header( ‘Location: http://myurl:33/touchcontrol/json/executebutton?device=Macros&button=Power%20Amp’ ) ;
break;
case $parsed==”Turn on amp”:
header( ‘Location: http://myurl:33/touchcontrol/json/executebutton?device=Macros&button=Power%20Amp’ ) ;
break;
case $parsed==”Play top 40″:
header( ‘Location: http://myurl:33/touchcontrol/json/executebutton?device=Macros&button=uktop40’ ) ;
break;
case $parsed==”Play the top 40″:
header( ‘Location: http://myurl:33/touchcontrol/json/executebutton?device=Macros&button=uktop40’ ) ;
break;
case $parsed==”Play the top 40 music”:
header( ‘Location: http://myurl:33/touchcontrol/json/executebutton?device=Macros&button=uktop40’ ) ;
break;
default:
header( ‘Location: http://myurl:33/?message=’.$parsed ) ;
break;
}?>[/reveal] - Setup the Gmail account with a custom filter to forward that message to your new Zapier email account trigger (you’ll need to setup a new forwarder email address). I set it up to delete all the other “New Incoming SMS’ Message to the trash. That way you only keep the commands said from Siri, but I also don’t want to see them so I set them to ‘archive it’ in the filter.
For those of you that can do this already without further instruction, get to it. Otherwise, follow AutomationDude.com on Facebook and I’ll give you more instructions with the code I used.
- Published in Apple Watch, Siri
Why the Amazon Echo Might Fail
Let me start off by saying that I absolutely love the the Amazon Echo’s potential. It has a far reaching microphone device that can filter noise, music and always listen to your conversation to make smart decisions about what you would like to do. I would love to get one. That said, there are many problems with the device that right now:
- The device is too expensive. At 179 USD it is the most expensive automation product in your home. Even all the automation hubs with similar components don’t cost more than $150. I believe the sweet spot is at $69.99. If they can get it down to that point I can see it being purchased by different types of people with different types of needs all over their house. Filling a 10 room house is just too costly at the moment. You could buy 3 used Samsung Tab 3’s with AutoVoice control, infrared control etc for the cost of one Echo.
- Invasion of privacy. Usually in an average home automation family household you will have one tech lover and the other that just doesn’t care and may actually hate having something always listening to you. With AutoVoice you can control the commands but with the Echo, you cannot remove them all.
- The API. Right now you need to say “hey Alexa” and the app name before a command. What I want to see is the user just selecting the commands. Ie. Being able to say “turn off the tv” instead of “hey Alexa, Vera turn off the tv”
- This is a niche product that has a small growing market, but it’s still small from what I believe Amazon is expecting.
Since Amazon wants people to use Echo as a hub to purchase products through them I can see that they will eventually lower the price point drastically just to get it into as many living rooms as they can. Until then I believe it will be a Google Glass style developer project.
What do you think about the Echo? Am I wrong to think it may fail?
- Published in Microphones