How to Fix Apple Watch Battery with 10 Tips and tricks
Over the past month I’ve yet to need a charge before bed and my day starts at 6am and goes until 11:30. I have lots of notifications, I use the workout feature for 45m a day and use Siri for everything. There have been a few days where I wasn’t sure if it would last the whole day though. These days I needed these tips.
Some small tricks you can try
- Put ‘Reduce motion to on’. Go into settings and accessibility in the Apple Watch app.
- Turn sounds and haptic feedback off.
- Reduce useless notifications (Twitter, games etc).
- Turn off Glances that you don’t use. It seems to query the phone to keep data current throughout the day. For example, stocks, world clock and weather are useless for me.
- Uninstall watch apps that you don’t use. It may be using background refresh to update data.
Some more drastic measures include
- Turn heart beat for workouts off in the watch app.
- Use the power reserve mode.
- Turn off location access for the Apple Watch.
- Turn prominent haptic feedback off.
- Turn down screen brightness in the settings.
- Published in Apple Watch
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
MyHarmony Home Automation Discussion and Early Review
What is MyHarmony?
MyHarmony is software and hardware to connect your current home automation software together. Using Harmony remotes to create macros you could create scenes by touching buttons on your remote to control your house. The video above isn’t using JUST MyHarmony products but all the solutions available in the home automation world and by no means is limited to just their service. The base unit contains IR, BLE and WiFi technology which can extend control to your home automation hub.
Why would I use it over my smartphone or a Z-Wave Remote?
That’s a very good question as they are redundant technologies. There are certainly a large portion of people who would much prefer a physical button to push vs an app on a screen that you have to hunt around to find. That said, you could always create macros in Tasker and use Autovoice or assign a series of hardware button pushes for certain actions.
Z-Wave Remote
Using a Z-Wave remote for tasks that are in certain rooms makes more sense as usually you only need to fire 4-5 tasks in a bedroom (lights, music and blinds). With a physical remote like the Intermatic HA-07 It’s all you need to create scenes/actions and so forth assuming you’re using software like the Vera, InControl, SmartThings, Wink, or something similar.
An Older Generation
There is a huge population that has no knowledge of automation technology and pushing buttons on a tablet is a fear based action. Using a remote is comfortable and once programmed to ‘work’ is easy to use and familiar. For these users that gravitate towards remotes over smartphones and tablets it’s an ideal solution for every room in the home.
Should I buy it?
That all depends on the level of disposable income you have. If you are trying to automate your home on a budget you can do all this with said z-wave remote above combined with your smartphone. This solution will extend your hub to allow all the dumb IR devices to communicate with each other. Setting up any logitech/harmony remote isn’t a piece of cake but it’s certainly easier than trying to code Tasker. With a user friendly UI and a great support community you will have better success with this if you have never heard of Tasker on Android.
Alternatives
There are lots of IR controllers to communicate with your system. For example, you could purchase a Tab 3 or Tab 4 which has IR and can have custom scenes that are created just like this solution. You would keep this by your coffee table and is half the price with triple the functionality.
- Published in Hubs, News, Product Reviews
Connect iOS and Android Together for Home Automation
What is this?
Android is a lot easier when doing home automation tasks and this appears to be the best way to link your devices together using a little trick.
Software
AutoRemote, Now Now, Google Search, Tasker, Activator, GooGiri
Hardware
iOS 7 with Jailbreak and an Android with AutoRemote and Tasker installed.
Steps
- Setup GooGiri, NowNow and Activator and Install Google Search on your iOS device. Below is a brief video on how Googiri works.
- Add a command to send all said ‘text’ to your server such as AutoRemote on a Tasker Android Device.
You can see above that I have setup my webserver address to send the text to my server. This server is the URL to the custom link of my AutoRemote URL. This could also go to an EventGhost PC url if you want to do so.
- On your Tasker device you’ll need to setup possible said commands but you should receive these commands from your GooGiri setup
- Begin starting to create interesting recipes to control every aspect of your home using your iOS device.
What I use it for
- I search my XBMC tv shows and movies to play any file using my iOS device
- I launch an AutoIt script to search for iTunes or Grooveshark music
- I can turn my TV on and do all my regular home automation tasks using my voice and holding the home button.
Why should you use this?
This is far more powerful and useful than HomeKit as it has very limited integration and you can’t interact with the web. You could also create commands to search your computer to send files, browse websites and spit back useful data. You could also integrate this with Acute to have a complete hands free experience. Let me know how you use it in our forums.
- Published in Activator, Apple iPhone, Recipe
Talking Tablet Recipe
Software or Services Used
Tasker, AutoNotification, IFTTT
Hardware
Any > 4.0 Android Device
Possible Uses
- Welcome home “Hello Rod”
- Tell you the weather
- Tell you what’s happening around you
- Notify you of any earthquakes
- There is motion in another room
Warning
This can get annoying for the people around you if this feature isn’t used sparingly or used when ONLY you are around.
Method for the earthquake example
1. Setup Tasker
- Download AutoNotification
- Create a new AutoNotification Plugin State within Tasker
- Select your filter command (ie. earthquake)
- Enter the task with the ‘Say’ command
- Enter a new task (named earthquake)
- Enter text New Earthquake %ancomm
2. Setup IFTTT to send an Android Notification
- You will need IFTTT installed
- Make a new RSS trigger with : http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/significant_day.atom
- New android Notification
Conclusion
You can get your tablet to respond to anything you would like. This could also be used as craigslist notifications to your devices.
Recipe: Turn LED Strip Red Before an Appointment
Software Used
Zapier, AutoRemote, Tasker, Smart Remote(app)
Hardware Required
IR android device, LED Strips
Steps
- Begin with creating a new Zapier task that has:
Trigger: Google Calendar and Event Start
Action: AutoRemote and New Message - Under #4 Only trigger an event start from Google Calendar when:Time before: 45 minutes
- #5 Enter the text that you will create a new filter for in your Android IR device to launch the task.Ie. turnonleds
- On your Android device open Tasker and create a new ‘profile’ ‘state’ ‘plugin’ ‘AutoRemote’
- Edit with the command text you picked
- in the Task you would add the ‘plugin’ for Smart Remote and pick your action.
- In your Task Edit wait a few minutes then turn them on
All Done!! Now every time you have a new appointment you will be notified through LEDs!
- Published in AutoRemote, Recipe, Tasker, Zapier
What’s the Best Tablet for Home Automation?
Answer
Since the ideal tablet is the one that you can see from anywhere in your house it has to be the following:
- A really good price (buying 8 Nexus 7’s isn’t cheap).
- Have enough RAM not to lag. This would be a minimum of 1GB RAM and have any bloatware removed.
- Have as many sensors as we could on it. The most important features:
- Decent front camera
- Good microphones
- Good WiFi (Most of the cheap tablets you buy from dealextreme and focalprice have terrible range)
- Ideally has IR for adding the cheapest automation products to your home
What is the most functional tablet to hang on your wall?
After considering all these factors and checking with the available tablets on deal sites the answer is…
Without a doubt it’s a seven inch Samsung Tab 3 with IR Control can be found on craigslist and ebay for under $80.
These are pretty awesome for many reasons:
- Cheap
- 1 GIG RAM can JUST handle what you need to do without crazy lag.
- Can act as full Voice Control with autolistening on.
- Easy to Root for full admin control
- Tasker, AutoRemote, SmartIR are necessities and make great companions to this device
- It can replace expensive IR only controllers
- It can be an IP cam that can integrate into Netcam Studio Server
- Very light and yet big enough to see from a distance
I will go on to say that these tablets aren’t the BEST ones but they do provide the best value for home automation and can be placed all around the home for easy integration into most home automation systems.
What are some things you’ve done with it?
1. Voice control with an always listening capability.
2. Use my iPhone to use Google Now and Search my Home PC to play whatever music I would like.
3. Use Yatse to auto play videos on my XBMC PC.
4. When you enter a room you can have it tell you that you’ve entered.
Why not the Tab 4, Nexus 7, Asus, Fire etc?
It’s all based on price and what’s the best value for what you want to do with it. Some of those are overkill for just having a tablet on the wall to do basic home automation tasks. Most do not require a fast processor or lots of ram as most tasks are done with one open application at a time.
Conclusion
There are plenty of better and faster tablets available but this one is the one you should be looking for on deal sites and second hand from friends. They can have so many uses and are pretty amazing little devices.
As of today, June 4th, 2015 you can buy it on Amazon for 84.99 Used or 119.99 New
The Best Scraping Data Website for Home Automation
What is a Web Scraper?
Scrapers are amazing at finding content around the web and allowing you to post it somewhere else or perhaps have a notification for such an alert. There are a ton of scraping tools out there. We have tried most of them and have concluded the easiest and most featured packed one to be KimonoLabs.
What is KimonoLabs?
Lets go over the PROS
- Super easy to use
- A Chrome extension to get access your password protected content.
- A massive list of already generated content
- Provides an easy way to add a Pebble Watch app
- Easy JSON output
- Easy webhook notification system
- Published in iFTTT, Scrapers, Scraping Data, Websites, Zapier
- 1
- 2