Wednesday, November 11, 2015

Voice Control Home Automation via Amazon Echo and Siri HomeKit - DIY

Voice Control Home Automation via Amazon Echo and Siri HomeKit - DIY


This is a quick start tutorial on setting up the Raspberry Pi 2 as a Home Automation System with Voice Control from Amazon Echo (Alexa) or Apple HomeKit (Siri). This is not a comprehensive tutorial, but should get you started.


Last Updated: 4/24/2016

REQUIREMENT:

Raspberry Pi 2 or Pi 3
8GB or larger microSD Card
Aeon Labs Z-Wave Z-Stick - Series 2 OR Gen5
Aeon Labs - Z-Wave Smart Energy Switch

OPTIONAL:
Logitech Harmony Home Hub
Amazon Echo or Amazon Dot

LET'S START:

Download Raspbian Jessie
Write the Raspbian Jessie Image to MicroSD Card
Insert MicroSD Card in Raspberry Pi 2 and Boot.
Connect to Pi using SSH (pi/raspberry)
Expand Filesystem - Ensures that all of the SD card storage is available to the OS
#Expand Filesystem and Reboot
sudo raspi-config

#Reboot Required and Important

#Initial Update and required packages
#All one line - cut/paste recommend
#Go get some coffee
sudo apt-get update && sudo apt-get -y upgrade && sudo apt-get -y install python2.7 libavahi-compat-libdnssd-dev git unzip curl subversion build-essential usbutils psmisc htop samba-common-bin samba php5 php5-cli php5-curl wicd-curses libudev-dev

###################################
#SAFE CUT/PASTE FROM THIS POINT 
#TO FIRST REBOOT
###################################

#apache get installed somewhere, so stop and disable it
sudo /etc/init.d/apache2 stop
sudo update-rc.d -f apache2 remove

#Setup SAMBA
#No password, Everyone has read/write access to \\<IPAddress>\root
cd /etc/samba
sudo mv smb.conf smb.conf.org
sudo wget --no-check-certificate http://dl.dropbox.com/u/42238/debian/openhab/smb.conf
sudo /etc/init.d/samba restart

#OPENHAB INSTALL
sudo mkdir -p /opt/openhab/addons_all
cd /opt/openhab

#Download current release
sudo wget https://bintray.com/artifact/download/openhab/bin/distribution-1.8.2-runtime.zip
sudo wget https://bintray.com/artifact/download/openhab/bin/distribution-1.8.2-addons.zip
sudo wget https://bintray.com/artifact/download/openhab/bin/distribution-1.8.2-demo.zip

#unzip
sudo unzip distribution-1.*-runtime.zip
sudo unzip distribution-1.*-addons.zip -d /opt/openhab/addons_all
sudo unzip -n distribution-1.*-demo.zip

#delete
sudo rm distribution-1.*-runtime.zip
sudo rm distribution-1.*-addons.zip
sudo rm distribution-1.*-demo.zip

#Addons (aka bindings) is what make OpenHAB so powerful
#To install Addons, copy them into the addons folder
sudo cp addons_all/org.openhab.action.harmonyhub*.jar addons
sudo cp addons_all/org.openhab.binding.harmonyhub*.jar addons
sudo cp addons_all/org.openhab.binding.exec*.jar addons
sudo cp addons_all/org.openhab.binding.http*.jar addons
sudo cp addons_all/org.openhab.binding.networkhealth*.jar addons
sudo cp addons_all/org.openhab.binding.ntp*.jar addons
sudo cp addons_all/org.openhab.binding.wol*.jar addons
sudo cp addons_all/org.openhab.binding.zwave*.jar addons
sudo cp addons_all/org.openhab.binding.systeminfo*.jar addons
sudo cp addons_all/org.openhab.io.harmonyhub*.jar addons
sudo cp addons_all/org.openhab.persistence.exec*.jar addons

#SIGAR for OpenHAB Systeminfo Binding
#https://github.com/openhab/openhab/wiki/Systeminfo-Binding
sudo mkdir -p /opt/openhab/lib
sudo wget https://groups.google.com/group/openhab/attach/ab7030271be23f05/sigar-raspbian.zip?part=0.1 -O /tmp/sigar-raspbian.zip
sudo unzip /tmp/sigar-raspbian.zip -d /tmp
sudo cp /tmp/sigar-raspbian/lib/* /opt/openhab/lib
sudo rm /tmp/sigar-raspbian.zip

#AMAZON ECHO BRIDGE INSTALL
#Go here for latest - https://github.com/armzilla/amazon-echo-ha-bridge/releases

sudo mkdir /opt/amazon-echo-bridge
cd /opt/amazon-echo-bridge
sudo wget --no-check-certificate https://github.com/armzilla/amazon-echo-ha-bridge/releases/download/v0.2.1/amazon-echo-bridge-0.2.1.jar


#HABMIN1 INSTALLATION
cd /opt/openhab
sudo wget https://github.com/cdjackson/HABmin/releases/download/0.1.3-snapshot/habmin.zip
sudo unzip habmin.zip
sudo rm habmin.zip
#delete old zwave binding
sudo rm addons/org.openhab.binding.zwave-1.5.0-SNAPSHOT.jar

#HABMIN2 INSTALLATION - requires HABMIN1
#HABMIN2 no longer works with OpenHAB 1 (only OpenHAB 2)
cd /opt/openhab/addons
sudo wget https://github.com/cdjackson/HABmin/blob/master/addons/org.openhab.io.habmin-1.7.0-SNAPSHOT.jar
sudo wget https://github.com/cdjackson/HABmin2/releases/download/0.0.15/org.openhab.ui.habmin_2.0.0.SNAPSHOT-0.0.15.jar
sudo chmod 755 *

sudo mkdir -p /opt/openhab/webapps/habmin2
cd /opt/openhab/webapps/habmin2
sudo wget https://github.com/cdjackson/HABmin2/releases/download/0.0.15/HABmin2-0.0.15-release.zip
sudo unzip HABmin2-0.0.15-release.zip
sudo rm HABmin2-0.0.15-release.zip

#OPENHAB CONFIG
#mail, security, zwave, harmonyhub
cd /opt/openhab/configurations
sudo cp openhab_default.cfg openhab.cfg

#SAMPLE OPENHAB ITEMS
cd /opt/openhab/configurations/items
sudo wget --no-check-certificate http://dl.dropbox.com/u/42238/debian/openhab/default.items

#SAMPLE OPENHAB SITEMAPS
cd /opt/openhab/configurations/sitemaps
sudo wget --no-check-certificate http://dl.dropbox.com/u/42238/debian/openhab/default.sitemap
sudo wget --no-check-certificate http://dl.dropbox.com/u/42238/debian/openhab/homekit.sitemap

#Z-WAVE Z-STICK OPENHAB CONFIGURATION
#Plug in Z-Stick
#Assuming Z-Wave Stick is attached to ttyUSB0
sudo sed -i 's^#zwave:port=^zwave:port=/dev/ttyUSB0^' /opt/openhab/configurations/openhab.cfg

#CUSTOM SCRIPTS
sudo mkdir /opt/openhab/custom_scripts

#Shutdown Windows PC Script
cd /opt/openhab/custom_scripts
sudo wget  --no-check-certificate http://dl.dropbox.com/u/42238/debian/openhab/custom_scripts/turnoffWindowsComputer.sh
sudo chmod +x turnoffWindowsComputer.sh

#PHP-FINDMYIPHONE
cd /opt/openhab/custom_scripts
sudo git clone git://github.com/albeebe/PHP-FindMyiPhone
sudo cp PHP-FindMyiPhone/class.findmyiphone.php .

sudo wget --no-check-certificate http://dl.dropbox.com/u/42238/debian/openhab/custom_scripts/listiclouddevices.php
sudo wget --no-check-certificate http://dl.dropbox.com/u/42238/debian/openhab/custom_scripts/turnoniphone.php
sudo wget --no-check-certificate http://dl.dropbox.com/u/42238/debian/openhab/custom_scripts/turnoffiphone.php

#NODEJS for SIRI HomeKit Bridge

#Remove conflicting nodejs
sudo apt-get -y remove nodejs

#Install nodejs
cd /tmp
sudo wget http://node-arm.herokuapp.com/node_latest_armhf.deb
sudo dpkg -i node_latest_armhf.deb
sudo rm node_latest_armhf.deb

#OpenHAB HomeKit Bridge
cd /opt
sudo git clone git://github.com/htreu/OpenHAB-HomeKit-Bridge
cd OpenHAB-HomeKit-Bridge

#This will take a while
cd /opt/OpenHAB-HomeKit-Bridge
sudo npm install -g npm@3.3.12

#Start OpenHAB on boot
cd /etc/init.d/
sudo wget --no-check-certificate http://dl.dropbox.com/u/42238/debian/openhab/etc/init.d/openhab
sudo chmod a+x openhab
sudo update-rc.d openhab defaults

#Home Kit Startup Script Setup
cd /opt/OpenHAB-HomeKit-Bridge
sudo cp start.sh.template start.sh
sudo chmod +x start.sh

#Amazon-Echo-Bridge Script Setup
cd /opt/amazon-echo-bridge/
sudo wget --no-check-certificate http://dl.dropbox.com/u/42238/debian/openhab/echobridgestart.sh
sudo chmod +x echobridgestart.sh

#Start bridges on boot

#delete 'exit 0' (backup rc.local also)
sudo sed -i.bak '/exit 0/d' /etc/rc.local

echo 'sleep 10' | sudo tee --append /etc/rc.local
echo 'sudo /opt/amazon-echo-bridge/echobridgestart.sh &' | sudo tee --append /etc/rc.local
echo 'sleep 60 #Give OpenHAB Time to Start' | sudo tee --append /etc/rc.local
echo 'sudo /opt/OpenHAB-HomeKit-Bridge/start.sh &' | sudo tee --append /etc/rc.local
echo 'exit 0' | sudo tee --append /etc/rc.local

###################################
#END CUT/PASTE 
###################################

#REBOOT
sudo reboot

#Configure Amazon Echo Bridge at
#http://IPADDRESS:8081/configurator.html
#Add sample items
cd /tmp
wget --no-check-certificate http://dl.dropbox.com/u/42238/debian/openhab/custom_scripts/iphone.json
wget --no-check-certificate http://dl.dropbox.com/u/42238/debian/openhab/custom_scripts/smartswitch.json
wget --no-check-certificate http://dl.dropbox.com/u/42238/debian/openhab/custom_scripts/windowspc.json
curl -H "Content-Type: application/json" --data @iphone.json http://localhost:8081/api/devices
curl -H "Content-Type: application/json" --data @smartswitch.json http://localhost:8081/api/devices
curl -H "Content-Type: application/json" --data @windowspc.json http://localhost:8081/api/devices

#FIND MY IPHONE SETUP
#CONFIGURE SAMPLE SCRIPTS
#Edit listiclouddevices.php with your iCloud username (email) and password

cd /opt/openhab/custom_scripts
sudo nano listiclouddevices.php


#Run it to find your deviceID
#DeviceID will be something like Eu4EGWK1Yt5+2JtKM7YNA++hxNtDw4ZzZuwT9BLxYcL2d7FaULCJMuHYVNSUzmXV<
php ./listiclouddevices.php

#Edit turnoniphone.php, turnoffiphone.php
#with username, password and deviceID
sudo nano turnoniphone.php
sudo nano turnoffiphone.php

#Run scripts to test
php ./turnoniphone.php
php ./turnoffiphone.php


#TURN OFF COMPUTER SCRIPT SETUP
#edit script with IPAddress, Username and Password
sudo nano turnoffWindowsComputer.sh

#Turn on your computer and test script
./turnoffWindowsComputer.sh
#Computer Power On will be handled via WOL Binding
#https://github.com/openhab/openhab/wiki/Wake-on-LAN-Binding-(WoL)

#Test via OpenHAB WebApp - http://IPADDRESS:8080/openhab.app

Download the OpenHAB iOS/Android app.

Ask Alexa to discover your devices - "Alexa, discover devices". Add additional devices via http://IPADDRESS:8081/configurator.html.

For HomeKit Siri setup, download Elgato Eve on iOS device
https://itunes.apple.com/us/app/elgato-eve/id917695792?mt=8

Launch Elgato Eve->Add Accessory
Under "SELECT ACCESSORY" you should see "OpenHAB HomeKit Bridge". Select it.
Select "Add to xxx" (xxx being whatever name you used)
Ignore warning about the accessory not being certified - Add Anyway
Select "Enter code manually"
Type in "031-45-154"


To reset HomeKit and start over, delete Elgato Eve app and then go into Settings->Privacy->HomeKit and select "Reset HomeKit Configuration"


Hardware:

Amazon Echo - http://www.amazon.com/dp/B00X4WHP5E/?tag=blogqnologyco-20
Voice Remote for Amazon Echo - http://www.amazon.com/dp/B00L9EPT8O/?tag=blogqnologyco-20
Logitech Harmony Home Hub - http://www.amazon.com/dp/B00N3RFC4G/?tag=blogqnologyco-20
Raspberry Pi 2 - http://www.amazon.com/dp/B00T2U7R7I/?tag=blogqnologyco-20
Aeon Labs Z-Wave Z-Stick Series 2 USB Dongle - http://www.amazon.com/dp/B003MWQ30E/?tag=blogqnologyco-20
(Newer version - Buy this version instead of the above) Aeon Labs Aeotec Z-Wave Z-Stick, Gen5 Z-Wave Plus - ZW090 - http://www.amazon.com/dp/B00X0AWA6E/?tag=blogqnologyco-20
Wink Connected Home Hub - http://www.amazon.com/dp/B00PV6GAI4/?tag=blogqnologyco-20
GE Link Smart Connected LED Light Bulb - http://www.amazon.com/dp/B00NOL16K0/?tag=blogqnologyco-20
GE Z-Wave On/Off/Dim Dimmer Switch (45612  - no neutral) - http://www.amazon.com/dp/B006LQFHN2/?tag=blogqnologyco-20
RGB LED Light Strip 5 meter with remote and power supply - http://www.amazon.com/dp/B00ASHQQKI/?tag=blogqnologyco-20

Harmony Hub Control for RGB LED discussion - http://forums.logitech.com/t5/Harmony-Remotes/RGB-Controller-44keys-exist-in-Harmony-DB/td-p/423325

Not shown in video, but I have everything running through this so I can monitor energy usage. I would also be able to determine if my TV is on by the amount of watts being drawn.
Aeon Labs - Z-Wave Smart Energy Switch - http://www.amazon.com/dp/B007UZH7B8/?tag=blogqnologyco-20

Software:

Raspbian Jessie -  https://www.raspberrypi.org/downloads/raspbian/
OpenHab - http://www.openhab.org/getting-started/index.html
Amazon Echo Bridge - https://github.com/armzilla/amazon-echo-ha-bridge
OpenHab HomeKit Bridge - https://github.com/htreu/OpenHAB-HomeKit-Bridge
PHP-FindMyiPhone - https://github.com/albeebe/PHP-FindMyiPhone

=======
Credit/References:

https://www.reddit.com/r/homeautomation/comments/377onm/extending_amazon_echo_voice_control_to_existing/

Getting Started with OpenHAB Home Automation on Raspberry Pi
http://www.makeuseof.com/tag/getting-started-openhab-home-automation-raspberry-pi/

[HOW TO] CONTROL YOUR OPENHAB ITEMS USING THE AMAZON ECHO - http://tinsley.io/2015/06/control-your-items-using-the-amazon-echo-openhab/

OpenHAB Community - https://community.openhab.org/


556 comments :

  1. This comment has been removed by the author.

    ReplyDelete
    Replies
    1. As stated above, I'm using a php script and providing instructions (as best as I can) on how it's done.

      PHP-FindMyiPhone - https://github.com/albeebe/PHP-FindMyiPhone

      Sorry, not sure what your statement regarding you apache server is related.

      Delete
    2. Thanks for replying, I meant that I just want to do the find my phone part, I already got a URL running (ie, run the URL from a browser to execute that PHP script), but I don't know how to run it from Amazon Echo, your instruction is comprehensive but I only want to do that part, which software modules should I install on the RPi? (using only Echo and RPi as hardware)

      Delete
    3. The Amazon Echo Bridge (https://github.com/armzilla/amazon-echo-ha-bridge) is what Alexa interface with. If you know how to run a PHP script from your Apache Server, then that's all you would need. If you don't, then I suggest following the tutorial and using OpenHAB.

      Delete
    4. Thanks for the input, I actually found a way to use Alexa skill kits to communicate with my web server and send commands into it, and find my iphone works perfect. I now want to implement the turn pc on and off remotely from RPi, do I need to install anything on the Windows? it's running Windows 10, on the RPi side, which modules do I need to install? is there any PHP or Shell script that I can just execute on RPi to get this functionality just like what "findmyiphone" does?

      Delete
    5. Glad to hear you got it working. Can you please share what you did with the Alexa skill kit?

      All required packages are in the tutorial right at the beginning. Nothing needs to be installed on Windows. The script is in the tutorial - turnoffWindowsComputer.sh.

      Delete
    6. Hi Qui, how did you run the find iphone PHP script from homebridge?

      Delete
  2. Ohh I understand now, I never knew about WOL and "net" command before, can it be done over wifi?

    For the skill kits, I found an open source project in PHP from amazon dev forum. Basically I created a skill on Alexa dev website, use some dummy intent schema and utterances for the kit to send all my speech to the api endpoint on my web server. The open source PHP code will parse the JSON sent from Echo, and then with the speech input, I can execute anything from the server. For example, if I say "Alexa, ask Jarvis to locate my iphone", the string "locate my iphone" will be received on my server, I can now check if the input string contain "locate", and then "iphone", if they match then execute the function, like shell_exec(/path/to/script.sh).

    Currently I'm controlling the RPi camera and find my iphone with the Echo. Next I want to turn on/off some light bulbs. I could buy a smart hub to do this but I want the RPi motion detect to control the lights as well, so I'm looking for a way to this. The wink hub sounds good but the NAND exploit seems to require some soldering.

    ReplyDelete
  3. Very nice installation guide. It is going in the scrapbook :)

    Thanks

    ReplyDelete
  4. Hi Qui,
    I was trying to run this with my Z-wave smart switch but can't seem to link the switch with the PI? Any thoughts on how i can sync the two.

    ReplyDelete
    Replies
    1. You'll need to follow the included direction to link them up. Basically, setup the Smart Switch to be in include mode (default mode when first pulled out of the box) and then pull out the ZWave USB Stick and press the button on it to set it into inclusion mode. Use HABMIN or logs to double check it paired correctly.

      Delete
  5. I have a stupid question. I've never done any kind of coding and quite honestly am not sure what I'm looking at. So, in the cut and past section, do I cut from the top all the way down, or am I cutting after each hashtag/pound symbol and doing each one individually.
    Ex. "#This will take a while
    cd /opt/OpenHAB-HomeKit-Bridge
    sudo npm install"
    I'm not actually adding "#this will take a while" to the cut and paste. I'm actually just adding the "cd /opt/OpenHAB-HomeKit-Bridge
    sudo npm install" section. Which means I have to go down each individual line and add them one by one? Or do I go to the very top
    ###################################
    #SAFE CUT/PASTE FROM THIS POINT
    #TO FIRST REBOOT
    ###################################
    And cut all the way down to
    ###################################
    #END CUT/PASTE
    ###################################
    Here

    ReplyDelete
  6. Hi,
    Do you know of any way to get the OpenHAB-HomeKit-Bridge to work on Weezy rather than Jessie? I have just come off of Jessie and back to Weezy because for some reason my scripts were not running correctly on Jessie. I could send the commands to run scripts through the command line, but they would not run if ran from OpenHAB.

    I tried to follow your instructions on installing OpenHAB-HomeKit-Bridge but on the NPM install part it seemed to get stuck for hours.

    ReplyDelete
    Replies
    1. I'm sure you can get OpenHAB-HomeKit-Bridge running on Weezy, however I spent a lot of time messing around with nodejs/npm to get it working perfectly with Jessie and cannot help. Probably easier to figure out why your scripts wasn't running then try to figure out nodejs/npm.

      Delete
    2. Hi, I took your advice and installed Jessie on another SD card. I see that you did "sudo wget http://node-arm.herokuapp.com/node_latest_armhf.deb". Can you please SSH into your RPi2 and do command "node -v" which will tell you which version you have installed.

      I cannot get this Siri integration working and i have a feeling that its something to do with the newer version of node not being compatible. At the time you installed it the latest must have been working, If you tell me what version you have then ill be able to install that one and try again.

      Delete
    3. Scratch that, Instead of "sudo npm install" i did "sudo npm install -g npm@3.3.12" (found this from here https://github.com/foreverjs/forever/issues/788).

      Now it seems to work.
      Now to work out how to get siri to take my voice commands.

      Delete
    4. Me again.
      Siri takes my commands, but for some reason the service will not start on boot :(

      Delete
    5. Qui can you give a little more guidance on "sudo npm install"? It is not doing anything for me. Saying command not found. I see Paul used "sudo npm install -g npm@3.3.12" is this good to work with? I am a novice so just trying to understand this all. Thank you very much!!!!

      Delete
    6. I am glad that I saw this post. It is informative blog for us and we need this type of blog thanks for share this blog, Keep posting such instructional blogs and I am looking forward for your future posts.
      Cyber Security Projects for Final Year

      JavaScript Training in Chennai

      Project Centers in Chennai

      JavaScript Training in Chennai

      Delete
  7. Hi Great Video, Can you use Siri to control your Sony TV, the your Harmony remote. Is only working through Alexa?

    ReplyDelete
    Replies
    1. Yes, you can use Siri to control the TV without Alexa.

      Delete
  8. Have you looked into Lutron Caseta Dimmers and Clear Connect Protocol? I really like the look and feel of these dimmers and I want them to work with Siri which Lutron Hub does. The issue I have is making the Dimmers work with other non Lutron devices. If I use Wink I would loose Siri. I looked at openHab and it might be able to work, but I am confused how openHAB talks to the switches. Maybe you could clarify this for me as you seem to have a vast knowledge in HA. Great Video and blog by the way.

    ReplyDelete
  9. Please can you make a step by step tutorial for Apple device only, really struggling to get it work on Raspberry pi been reading other info on net but its just getting me crazy just want to get it working with my harmony hub . been following the tutorial you put up but its confusing and its not working

    thanks in advanced

    ReplyDelete
    Replies
    1. Sorry, I cannot provide personal tech support for everyone. All I can do is provide some guidance. I would suggest starting from the basic. Is OpenHAB running and working? Are you able to control your harmony hub via OpenHAB? Once you get it working with OpenHAB, you then can move onto HomeKit Bridge.

      If you want additional help (no promises), you'll need to provide details on your issue. How far have you gotten? What is working what isn't? Saying things are confusing and not working doesn't tell me anything.

      Delete
    2. thanks for the reply the openhab is running but not working with harmony hub please can you tell me how do i get it working

      Delete
    3. been trying a few days trying to connect Harmony hub I have looked at https://github.com/openhab/openhab/wiki/Logitech-Harmony-Hub-Binding but I don't understand it please can you break it down in simple steps as possible ? I have entered stuff in Items,Sitemap,Cfg file from other sources samples but its not working may be am doing it all wrong I would really appreciate your help thanks

      Delete
    4. Sorry to hear you're having such difficulties. Please take a look at the OpenHAB community/forums for help. If you post your issue with details such as configuration, items file and site map, etc., I'm sure someone will be able to identify the issue you're having on the forums.

      Delete
    5. hi yes I have already visited openhab forums I have managed to get openhab working with harmony hub just stuck at Homebridge to get siri working I am lost
      getting this error


      pi@raspberrypi:~ $ npm test
      npm ERR! Error: ENOENT, open '/home/pi/package.json'
      npm ERR! If you need help, you may report this entire log,
      npm ERR! including the npm and node versions, at:
      npm ERR! http://github.com/npm/npm/issues

      npm ERR! System Linux 4.1.18-v7+
      npm ERR! command "node" "/usr/local/bin/npm" "test"
      npm ERR! cwd /home/pi
      npm ERR! node -v v0.10.29
      npm ERR! npm -v 1.4.21
      npm ERR! path /home/pi/package.json
      npm ERR! code ENOENT
      npm ERR! errno 34
      npm ERR! Error: EACCES, open 'npm-debug.log'
      npm ERR! { [Error: EACCES, open 'npm-debug.log'] errno: 3, code: 'EACCES', path: 'npm-debug.log' }
      npm ERR!
      npm ERR! Please try running this command again as root/Administrator.

      npm ERR! System Linux 4.1.18-v7+
      npm ERR! command "node" "/usr/local/bin/npm" "test"
      npm ERR! cwd /home/pi
      npm ERR! node -v v0.10.29
      npm ERR! npm -v 1.4.21
      npm ERR! path npm-debug.log

      Delete
    6. so I should ignore it also when I run homebrige it says no plugin found how should I configure it to work with Siri ?

      Delete
  10. Could multiple turnoniphone.php scripts for different iphones/ipads be used? Could I copy paste/rename the script? Thanks for the help.

    ReplyDelete
  11. Have anyone got the Harmony Hub working both Alexa and Siri. With Amazon-Echo-Bridge and Open HAB running on Raspbian Jessie. If yes, can you please share your code. thx

    ReplyDelete
  12. Hello Sir,

    I use Fibaro system for automation,
    I just need lightning and curtain control with Amazon echo.
    this thing work fine with fibaro?

    ReplyDelete
  13. All these links here are not longer valid... do you mind to share how to we go about it with the new version?

    sudo wget http://openhab.ci.cloudbees.com/job/openHAB/lastSuccessfulBuild/artifact/distribution/target/distribution-1.8.0-SNAPSHOT-runtime.zip
    sudo wget http://openhab.ci.cloudbees.com/job/openHAB/lastSuccessfulBuild/artifact/distribution/target/distribution-1.8.0-SNAPSHOT-addons.zip
    sudo wget http://openhab.ci.cloudbees.com/job/openHAB/lastSuccessfulBuild/artifact/distribution/target/distribution-1.8.0-SNAPSHOT-demo.zip

    ReplyDelete
    Replies
    1. Thank you for letting me know. I'll take a look when I get a chance.

      Delete
    2. When are these going to by updated ?

      Delete
    3. Looks like there are multiple links in the script that dont work anymore

      Delete
  14. Hey would this work on the OSMC image or would I have to change things? If so would the RPi 2 be able to handle that?

    ReplyDelete
  15. DVD Player: If the home theater system is coming with a DVD player, see the DVD Player Buying Guide to see if it fits your needs. sound systems for home theaters

    ReplyDelete
  16. UPERNIGHT 5-Meter Waterproof Flexible Color Changing RGB SMD5050 300 LEDs Light Strip Kit with 44 Key Remote and 12V 5A Power Supply

    in video HARMONY hub device name to

    ReplyDelete
  17. Could anybody post the configuration to start harmony activitys with Siri? I don`t know how to build an item for the harmony devices. I just have the item name with the PressButton at the end ....

    ReplyDelete
  18. Hi, can you please help me? I'm stuck installing habmin2 with sudo whet ... cdjackson ... habmin2_0.0.15 SNAPSHOT 0.0.15!!!
    I get an error and it's not downloading the snapshot file from github!
    Could anyone please help?
    Thanks!

    ReplyDelete
  19. Anybody here? I installed Habmin 1 and I followed all the instruction except those about amazon echo because I don't have it and when I open the elevator eve I can't see the HomeKit bridge in the app! How can I test that the bridge is up and running?
    Thanks for any advice!

    ReplyDelete
  20. I forgot to say that openhab starts on Rpi reboot and everything hung works fine from the openhab app, I can switch the lights and my tv also but can't figure if the bridge is running!

    ReplyDelete
  21. This comment has been removed by the author.

    ReplyDelete
  22. This comment has been removed by the author.

    ReplyDelete
  23. This is really amazing but I'm a little confused as what i have to buy and connect to control LED strip lighting and the functions of the led strip as well. Any chance you can give me some information about it. Again good job with everything.

    ReplyDelete
  24. Awesome! That's exactly what I was looking for. Thank you very much. One question: Is it possible to use Broadlink RM Pro instead of Logitech Harmony? How?

    ReplyDelete
  25. From retrofitting more seasoned structures to introducing automation, nowadays you will discover numerous alternatives with regards to automation. topwifithermostat.info jim here

    ReplyDelete
  26. It will show up on Facebook as well When you've getting in the info Instagram Account Create Instagram is a popular social media platform particularly.

    ReplyDelete
  27. Yes i am totally agreed with this article and i just want say that this article is very nice and very informative article.I will make sure to be reading your blog more. You made a good point but I can't help but wonder, what about the other side? !!!!!!THANKS!!!!!! vpn services

    ReplyDelete
  28. Thank you for sharing the put up.. mother and father are worlds first-rate man or woman in each lives of person..they want or should be triumphant to maintain wishes of the own family. Gmod game

    ReplyDelete
  29. Almost all will agree success in internet marketing will often hinge around whether or not a decent website is employed as a promotional tool. Most do understand the necessity of creating an excellent website.All online marketers know that having quality, targeted website content is of the utmost importance for getting traffic to your site. cheap shoes in Pakistan

    ReplyDelete
  30. Interesting post! This is really helpful for me. I like it! Thanks for sharing!
    - hotmail login

    ReplyDelete
  31. When there is a blogging site for every subject under the sun, why not one for day trading too? We have a detailed commentary on what constitutes a blog meant for day trading.Writing is an interesting art if properly crafted. The more interesting fact is that anyone can write. All you need to do is begin to write and then, your creative juices will take over.Formal Shoes

    ReplyDelete
  32. CrownQQ | Domino agent QQ | BandarQ | Domino99 Online Largest

    Who Is The Agent Bandarq, Domino 99, And The Trusted Online Poker City in Asia comes to all of you with exciting game games and exciting bonuses for all of you

    Bonus on CrownQQ:
    * Bonus rolling 0.5%, every week
    * Refferal Bonus 10% + 10%, lifetime
    * Bonus Jackpot, which you can get easily

    Featured Games CrownQQ:
    * Online Poker
    * BandarQ
    * Domino99
    * Bandar Sakong
    * Sakong
    * Bandar66
    * AduQ
    * Sakong

    More Info Visit:
    Website: AGEN BANDARQ CrownQQ
    BBM: 2B382398
    FB: AgentCrownqq
    Twitter: crown_qq

    ReplyDelete
  33. Yuk Buruan ikutan bermain di website http://vipnagaqq.com
    Sekarang NAGAQQ Memiliki Game terbaru Dan Ternama loh...
    => Bonus Refferal 20%
    => Bonus Turn Over 0,5%
    => Minimal Depo 15.000
    => Minimal WD 15.000
    => 100% Member Asli
    => Pelayanan DP & WD 24 jam
    => Livechat Kami 24 Jam Online
    => Bisa Dimainkan Di Hp Android
    => Di Layani Dengan 6 Bank Terbaik
    => 1 User ID 4 Permainan Menarik
    Ayo gabung sekarang juga hanya dengan
    mengklick AGEN BANDARQ TERBAIK
    WHATSAPP : +855967014811
    PIN BB : 2B209F68

    ReplyDelete
  34. Yang Merupakan Agen Bandarq, Domino 99, Dan Bandar Poker Online Terpercaya di asia hadir untuk anda semua dengan permainan permainan menarik dan bonus menarik untuk anda semua

    Bonus yang di berikan NagaQQ :
    * Bonus rollingan 0.5%,setiap minggunya
    * Bonus Refferal 10% + 10%,seumur hidup
    * Bonus Jackpot, yang dapat anda dapatkan dengan mudah

    * Minimal Depo 15.000
    * Minimal WD 20.000

    Games Yang di Hadirkan CrownQQ :
    * Poker Online
    * BandarQ
    * Domino99
    * Bandar Poker

    Info Lebih lanjut Kunjungi :
    Website : AGEN BANDARQ NagaQQ
    WHATSAPP : +855967014811
    PIN BB : 2B209F68

    ReplyDelete
  35. our pick of the best washing machine dryers. http://hatenablog.com/ Store wise, as well as you can washer and dryer machine Well Beko thinks so, as this machine does Top 10 Washer and Dryer the drum and also inject a blast of warm air for approximately washer and dryer and also though it's not going to official guide drum turning and temperature level.

    ReplyDelete
  36. Yuk Buruan ikutan bermain di website http://zonaemas.com
    Sekarang CROWNQQ Memiliki Game terbaru Dan Ternama loh...
    => Bonus Refferal 20%
    => Bonus Turn Over 0,5%
    => Minimal Depo 20.000
    => Minimal WD 20.000
    => 100% Member Asli
    => Pelayanan DP & WD 24 jam
    => Livechat Kami 24 Jam Online
    => Bisa Dimainkan Di Hp Android
    => Di Layani Dengan 5 Bank Terbaik
    => 1 User ID 8 Permainan Menarik
    "NEW AGEN BANDAR 66"
    Ayo gabung sekarang juga hanya dengan
    mengklick AGEN BANDARQ
    WHATSAPP : +855967646513
    PIN BB : 2B382398

    ReplyDelete
  37. CrownQQ | Agen Domino QQ | BandarQ | Domino99 Online Terbesar
    Susah cari Situs judi online yang bisa di percaya...?
    Mari gabung di AGEN BANDARQ CROWNQQ
    Bonus Refferal 20%
    Bonus Turn Over 0,5%
    Agen Judi Online Terbesar dan Terpercaya se asia
    Daftar dan buktikan sendiri sekarang juga..
    WHATSAPP : +855967646513
    PIN BB : 2B382398

    ReplyDelete
  38. Mendapat Banyak Keuntungan Saat Bermain BandarQ Online, Capsa Susun Dan Poker Online Di

    poker99 Situs poker99 selain menyediakan permainan seperti BandarQ Online, Capsa Susun Dan

    Poker Online, juga menyediakan berbagai macam bonus yang menggiurkan untuk member yang sudah

    bergabung dengan kami seperti sistem bonus referral terbesar dan berlaku untuk seumur hidup

    dengan cara yang sangat mudah yaitu anda hanya perlu untuk mengajak teman anda sebanyak

    mungkin untuk bergabung bersama situs poker99 dan memainkan permainan taruhan seperti BandarQ

    Online, Capsa Susun Dan Poker Online. Dan tentu saja masih banyak bonus yang lain nya untuk

    mengetahui lebih lanjut bonus - bonus yang lain nya anda bisa langsung menanyakan poker99 yang akan selalu siap melayani dan menjawab semua

    pertanyaan anda selama 24 jam nonstop dan kami berani

    ReplyDelete
  39. Online, Capsa Susun Dan Poker Online. Dan tentu saja masih banyak bonus yang lain nya untuk

    mengetahui lebih lanjut bonus - bonus yang lain nya anda bisa langsung menanyakan poker99 yang akan selalu siap melayani dan menjawab semua

    pertanyaan anda selama 24 jam nonstop dan kami berani

    ReplyDelete
  40. mengetahui lebih lanjut bonus - bonus yang lain nya anda bisa langsung menanyakan poker99 yang akan selalu siap melayani dan menjawab semua

    ReplyDelete
  41. poker99

    [url=https://vippoker99.com/m/]poker99[/url]

    [https://vippoker99.com/m/ poker99]

    https://vippoker99.com/m/

    [poker99](https://vippoker99.com/m/)
    [u]https://vippoker99.com/m/ poker99[/u]

    ReplyDelete
  42. so many people comend about poker about bandarq, but this blog topic about teknologi
    if you wan comend about same with poker online... go to real site in situs poker online

    ReplyDelete
  43. Njirr ini baru mantappp contentnya,di tunggu tunggu selama ini gan,pertahankan.
    jangan lupa cekidot bareng kita juga ya,di AGEN BANDARQ

    ReplyDelete
  44. NAGAQQ | AGEN BANDARQ | BANDARQ ONLINE | ADUQ ONLINE | DOMINOQQ TERBAIK
    Yang Merupakan Agen Bandarq, Domino 99, Dan Bandar Poker Online Terpercaya di asia hadir untuk anda semua dengan permainan permainan menarik dan bonus menarik untuk anda semua

    Bonus yang diberikan NagaQQ :
    * Bonus rollingan 0.5%,setiap minggunya
    * Bonus Refferal 10% + 10%,seumur hidup
    * Bonus Jackpot, yang dapat anda dapatkan dengan mudah

    * Minimal Depo 15.000
    * Minimal WD 20.000

    Games Yang di Hadirkan NagaQQ :
    * Poker Online
    * BandarQ
    * Domino99
    * Bandar Poker

    Info Lebih lanjut Kunjungi :
    Website : AGEN BANDARQ NagaQQ
    WHATSAPP : +855967014811
    PIN BB : 2B209F68

    DOWNLOAD APLIKASI PKV MOBILE
    DOWNLOAD PKV ANDROID
    DOWNLOAD PKV IPHONE

    ReplyDelete
  45. NAGAQQ AGEN BANDARQlagi promo lohh..
    Bonus Refferal 20%
    Bonus Turn Over 0,5%
    Tunggu apa lagi.. ???
    Mari Daftar dan bergabung bersama kami
    WHATSAPP : +855967014811
    PIN BB : 2B209F68

    ReplyDelete
  46. Yuk Buruan ikutan bermain di website http://ratuhoki99.com
    Sekarang CROWNQQ Memiliki Game terbaru Dan Ternama loh...
    => Bonus Refferal 20%
    => Bonus Turn Over 0,5%
    => Minimal Depo 20.000
    => Minimal WD 20.000
    => 100% Member Asli
    => Pelayanan DP & WD 24 jam
    => Livechat Kami 24 Jam Online
    => Bisa Dimainkan Di Hp Android
    => Di Layani Dengan 5 Bank Terbaik
    => 1 User ID 8 Permainan Menarik
    "NEW AGEN BANDAR 66"
    Ayo gabung sekarang juga hanya dengan
    mengklick AGEN BANDARQ
    WHATSAPP : +855967646513
    PIN BB : 2B382398

    ReplyDelete
  47. Cari Situs Judi AGEN BANDARQ Online yang aman dan terpercaya ?
    Solusinya hanya di CROWNQQ
    Bonus Refferal 20%
    Bonus Turn Over 0,5%
    Hanya dengan minimal deposit 20ribu sudah bisa bermain 8 game sekaligus lohh..
    "NEW AGEN BANDAR 66"
    Ayo daftar dan gabung sekarang juga,,
    WHATSAPP : +855967646513
    PIN BB : 2B382398

    ReplyDelete
  48. Mau menang banyak dengan modal sedikit..
    Ayo gabung di Agen Domino Crown99
    =>Bonus Refferal 20%
    =>Bonus Turn Over 0,5%
    =>Min Deposit Rp20.000
    =>1 User ID 8 Games
    Situs yang bisa memberikan kemenangan Agen BandarQ
    raih kemenangan anda segera...
    WHATSAPP : +855967646513
    PIN BB : 2B382398

    ReplyDelete
  49. The writer has so beautifully captivated the attention of audience by this resplendent blog.
    https://www.internetgs.it/ecco-i-migliori-sistemi-di-etichettatura-automatica-professionale

    ReplyDelete
  50. This is the Official Norton web site for current user and non existing user sign in or login to your account, setup, download, reinstall and guide. norton.com/setup Enter your product key online and get support of Norton.com setup. Download & Install Norton office Product or Visit activation website.

    ReplyDelete
  51. PERMAINAN ONLINE TERBESAR DI INDONESIA

    Website paling ternama dan paling terpercaya di Asia ^^
    Sistem pelayanan 24 Jam Non-Stop bersama dengan CS Berpengalaman respon tercepat :)
    Memiliki 8 Jenis game yang sangat digemari oleh seluruh peminat poker / domino

    - Adu Q
    - Bandar Q
    - Bandar Sakong
    - Bandar Poker
    - Poker
    - Domino 99
    - Capsa Susun
    - BANDAR66 / ADU BALAK ( GAME TERBARU )

    Permainan Judi online yang menggunakan uang asli dan mendapatkan uang asli ^^
    * Minimal Deposit : 20.000
    * Minimal Withdraw : 20.000
    * Deposit dan Withdraw 24 jam Non stop ( Kecuali Bank offline / gangguan )
    * Bonus REFFERAL 15 % Seumur hidup tanpa syarat
    * Bonus ROLLINGAN 0.3 % Dibagikan 5 hari 1 kali
    * Proses Deposit & Withdraw PALING CEPAT
    * Sistem keamanan Terbaru & Terjamin
    * Poker Online Terpercaya
    * Live chat yang Responsive
    * Support lebih banyak bank LOKAL


    Contact Us
    Website SahabatQQ
    WA 1 : +85515769793
    WA 2 : +855972076840
    Telegram 1 :+85515769793
    Telegram 2 : +855972076840
    LINE : SAHABATQQ
    TWITTER : SahabatQQ
    Kami Siap Melayani anda 24 jam Nonstop
    daftar sahabatqq
    Kontak SahabatQQ : Kontak SahabatQQ

    ReplyDelete
  52. visit mcafee.com/activate offers an expansive activation of security answers for windows and macintosh clients. with mcafee things on your contraption, you can guarantee the entire security of your information, programming and applications.
    mcafee.com/activate

    mcafee.com/activate

    mcafee.com/activate

    mcafee.com/activate

    ReplyDelete
  53. IT expert having deep knowledge about PC antivirus products. Mainly researching and writing blogs. Press on the official site of ...norton.com/setup | norton.com/setup |mcafee.com/activate

    ReplyDelete
  54. Allassignmenthelp is your academic caretaker that has been the most sought out service in the US and other country and we have an answer to all your assignment queries. Write My Assignment For Me

    ReplyDelete
  55. It increased the boot speed and optimize the overall performance of the system. Norton Security Deluxe is new applications that have all the qualities of Norton antivirus with some extra services. norton.com/setup | norton.com/setup | norton.com/setup | norton.com/setup | norton.com/setup

    ReplyDelete
  56. You can pick the one that meets your requirements the best. These items can be effectively downloaded and activated by means of mcafee.com/activate.
    Like
    mcafee.com/activate | mcafee.com/activate

    ReplyDelete
  57. What an incredible work! Not only was it informative but also nicely written. To the point. Would like to read more from this space. Thank you for sharing great information to us.
    best assignment help online

    ReplyDelete
  58. Situs Penyedia Layanan Sepak Bola Terbaik Sbobet Dan Bonus Member Baru Yang Besar, Agen Sepak Bola Sbobet Maxbet Yang Memberikan Pelayanan 24 Jam Nonstop, Bandar Judi Sepak Bola Sbobet Yang Di Dukung Oleh Bank Dengan Pelayanan CS Yang Ramah dan 24 Jam Nonstop, Penyedia Jasa Pembuatan ID Sbobet Judi Sepak Bola Yang Terkenal Dan Memiliki Grafis YangBagus, dan Kemudahan Dalam Bermain Dan Keamanan Saat Bertransaksi

    Agen Sepak Bola Online

    bonus besar Sepak Bola

    Bandar judi Sepak Bola

    Agen Sbobet Judi Bola

    Judi Sepak Bola Terbaik

    Agen Judi Online

    Bandar judi ikan

    Agen sabung ayam

    judi sabung ayam

    ReplyDelete
  59. Just don't forget about the safety of your device. On the website nnabags.com, I found a lot of information on how to keep your device safe. In today's world we keep a lot of confidential information in our phone and I think you don't want it to fall into the wrong hands.

    ReplyDelete
  60. These roblox music ids and roblox song codes are very commonly used to listen to music inside Roblox. You can find out your favorite roblox Song ID from below

    https://robloxmusic.kinja.com/roblox-tunes-ids-1839953035

    ReplyDelete
  61. You have performed a great job on this article. It's very precise and highly qualitative. You've managed to make it readable and easy to read. You have some real writing talent. Thank you so much.
    jobs in dubai

    ReplyDelete
  62. If you are seeking Programming Help from experts, then you need to connect with a reliable service provider. The Programming Assignment Help service provider works 24x7 to offer required help to all students without any delay. You can share all your project-related requirements to the selected writing service provider and get the exact answers for your academic papers.

    ReplyDelete
  63. office.com/setup - Most companies require an ultimate program to manage and create patterned data for their business performance and records. Even if you are a working individual or entrepreneur, you can still use Office for managing your work report and daily performance, such as using Excel to maintain your daily or monthly business revenue or profit. Moreover, you can use Excel spreadsheets to record your daily business expenses, and then you can refine your budget and deals to get the best ROI. Office is a productivity tool that can help you in understanding, analyzing, recording essential business data. 

    ReplyDelete
  64. mcafee.com/activate-McAfee is an America based multinational enterprise that provides top-notch computer security programs. The need for computer security software has increased with the surge of internet users worldwide. McAfee offers premium-class web-security programs that help your system stay protected from various online threats.

    ReplyDelete
  65. norton.com/setup-Norton is undoubtedly the best antivirus software developed by the Symantec Corporation. It is available for every device like Mac, Windows, and even Android, as well. Most importantly, it offers lots of advanced features that include three types of scans (Quick, Full system, and Custom scan), and speak to the real person in support as well.

    ReplyDelete
  66. Sign in to enter your item key, get to your record, deal with your membership, and stretch out your Norton security to PC, Mac, Android, and iOS gadgets. On the off chance that you don't as of now have a Norton account, make one today. Welcome to Norton . Sign in to enter your item key, get to your record, deal with your membership, and stretch out your Norton security to PC, Mac, Android, and iOS gadgets.For more information visit norton.com/setup

    ReplyDelete
  67. How to download HP printer Assistance on Windows PC?

    The majority of the printer issues are temporary and can be easily resolved with the help of HP Printer Assistance software. This software comes with no price tag at all, and it is listed on HP’s official website. Call HP Support Assistant if you want the assistance regarding the installation of this tool.

    ReplyDelete
  68. How to fix a paper jam Problem on the Brother printer?

    Brother is a renowned brand in a low-cost printer market. Affordability and performance is something that makes this brand a standout option for the quality-conscious audience. But even the high-quality Printer can be ruined by frequent paper jams. Connect with Brother Printer Service if you want to figure out the best possible solution for this problem.

    ReplyDelete
  69. My assignment help Australia is one-stop solution for students looking for quality assignment help for meeting academic writing commitments. Our subject experts help students to achieve the aim of winning accolades and success in career. Contact us to access the best team of writers, proofreaders, editors and project managers offering 100% authentic write-ups.

    ReplyDelete
  70. Students looking for database management assignment help can get connected to our database management assignment helper to get their task completed on time.
    Abc Assignment help offers quality academic writing help to students with complete accuracy. Rates for
    database assignment help
    is lowest in comparison to other online companies. Beside this team of abc assignment help is also dedicated to provide 24/7 online support thus helping students with their doubts.
    For more details on Database Management Assignment Help connect with our online professionals.

    ReplyDelete
  71. Webroot.com/safe - Download, install and activate your Webroot product. Visit www.webroot.com/safe and enter the activation code to protect your devices
    webroot.com/safe
    webroot.com/safe

    ReplyDelete
  72. Nice blog with Amazing information .. love to read about this.
    Awaiting for your new post
    We at Fullassignment.com bring to you the most significant Information Security assignment help writing service at the best cost. With long stretches of understanding we are prepared to give assignment help online over the globe.You will be guided here with a portion of the information of Information Security assignment which could assist you in deciding writing a Information Security assignment. Nonetheless, we unequivocally prescribe you to benefit Inter Process Communication Assignment Help from our specialist to find out about marketing and its scope.We also provide Operating systems Assignment Help from our experts.

    https://fullassignment.com/

    ReplyDelete
  73. Use Assignment Help services in Australia to get the services of professional academic writers easily. Enhance your chances of getting A+ grades in all project submission using online assignment writing services.

    ReplyDelete
  74. My assignment help services online help students in variety of subjects and courses ensuring that they submit flawlessly written assignments, essays and term papers. We offer unsurpassable assignment solutions through our subject-specific experts having proficiency and knowledge in meeting University guidelines ensuring a desired score in every academic paper.

    ReplyDelete
  75. This comment has been removed by the author.

    ReplyDelete
  76. Run 6 days per week and cross train as your easy day, but not before or immediately after your long runners cross train. Run 4-6 days per week and cross train the day before your long run to rest and prepare your legs. Run 4-6 days per week and cross train the day after your long run to recover from the hard effort.

    ReplyDelete
  77. Unable to change your Verizon router’s password? Do not get worried. It is one of the most common problems among new users. For that, our expert team is here to help you out in order to change Verizon router password in a simple way. So get in touch with us and get instant help.

    ReplyDelete
  78. Great post however , I was wanting to know if you could write a litte more on this subject? I’d be very thankful if you could elaborate a little bit further. Bless you!
    Sindhi News

    ReplyDelete
  79. Enabling Java in a browser helps users to get any program started quickly and effectively. Since the time of Chrome changes its features, users have been failed to enable Java in Chrome. If you are too unable to get along with the features, get connect with our Chrome executive as quickly as possible.

    ReplyDelete
  80. mcafee.com/activate-The world is abundant with countless antivirus measures, but McAfee is a clear standout amidst them. It provides best and reliable features such as data protection, cloud security, server security and more. If you are facing any problem due to malicious viruses, malware or another threat, then McAfee is an ideal option to utilize. Therefore, potential users can visit www.mcafee.com/activate now in order to download, install and activate McAfee with ease.

    ReplyDelete
  81. mcafee.com/activate–Enter 25 Digit Activation Code–Activate McAfee Antivirus Product. We as a whole realize that ongoing occasions are totally computerized and we are totally encompassed by the web, however we don't have the foggiest idea that it is so risky to be encompassed by the web.

    ReplyDelete
  82. office.com/setup-MS Office is a renowned Microsoft software that is popular worldwide for its attribute of providing ease to offices and corporations. The best thing about Microsoft Office is that Microsoft keeps enhancing its specs and advancement ever since it was crafted. MS Office provides a wide variety of office tools such as MS Excel, MS Word and PowerPoint all together to provide convenience to your task. Users who are willing to take the assistance of a whole new version of MS Office should browse to office.com/setup and use it now. 

    ReplyDelete
  83. Gmail is one of the email service providers used to allow its individuals to send and receive emails. However, some of its users are having the problem of their Gmail not working in Outlook. If you are also facing similar issue, you can reach the experts for assistance. The experts are obtainable 24-hours a day for assistance.

    ReplyDelete
  84. Are you facing QuickBooks Error 15227? In QuickBooks, error 15227 limits the working of the software and make users unable to access their QB account. This error is normally related to the new QuickBooks version installed in the system for the Payroll update that you make.

    ReplyDelete
  85. Make your papers easy to submit via Assignment Help. If you can't find the right source of help while studying at Australian University, you always have the option of assignment writing services to get help from native academic writers in Australia.
    My Assignment Help
    Assignment Help Online
    Online Assignment Help

    ReplyDelete
  86. Thanks a lot for sharing it, i got here huge knowledge i like you website and bookmarked in my PC
    mcafee.com/activate

    mcafee.com/activate

    norton.com/setup

    webroot.com/safe

    mcafee.com/activate

    ReplyDelete
  87. The experts at Assignment Work Help is the platform where a pool of qualified experts helps the students through their academic writing service for different subjects. There are many reasons which may help you in deciding to choose Assignment Work Help for services such as assignment writing services online for your academics. Here, you get a package full of the featured services with quality at the reasonable low rate. We well understand the situation of students to balance the extra curricular activities, their hard work towards their vision and dreams, the expectation of higher and the best grades while staying calm overall. The experts are not just the writers for their subjects rather they are the known industry consultants in their respective fields. Moreover, they are the pillars of Assignment Work help who put their efforts to provide the solution in an writing service domain.
    online assignment writing help
    assignment
    assignment help australia
    assignment solution australia
    homework help australia
    online assignment help
    best assignment help
    assignment work help usa
    assignment writing services in USA

    ReplyDelete
  88. Usually I never comment on blogs but your article is so convincing that I never stop myself to say something about it. You’re doing a great job Man,Keep it up.
    Webroot.com/safe | webroot.com/safe | central.bitdefender.com | webroot.com/safe| webroot.com/safe

    ReplyDelete
  89. Assignment help Australia offers attractive deals for students looking for quality assignment help from Aussie writers. We have a resourceful team of experienced and subject-specific assignment tutors, dedicated to assist students with the authentic academic support. Our team is available 24x7 to help students on a plethora of case studies, assignments, essays, coursework and more.

    ReplyDelete
  90. Webroot Safe: Get your 25-digit activation key on webroot.com/safe. Download and install the Webroot setup file on webroot.com/safe.
    webroot.com/safe
    webroot.com/safe
    webroot.com/safe

    ReplyDelete
  91. It is actually a nice and helpful piece of information. I’m satisfied that you shared this helpful info with us. Please stay us informed like this. Thank you for

    sharing. Sigelei 213 Plus,
    Smok 200W,

    ReplyDelete
  92. Good focuses you composed here..Great stuff… I think you've made some genuinely intriguing points.Keep up the great work.
    Cosmetics Online Shopping in India
    Makeup Products Online
    Buy Beauty Products Online
    Online Makeup Products
    Online Cosmetics

    ReplyDelete
  93. It was very well authored and easy to get the picture. Unlike additional blogs I have read which are really not good. I also found your posts very

    interesting.
    Marijuana Effects,
    Weed,
    Marijuana Medical,
    Vape

    ReplyDelete
  94. I have as of late begun a website, the data you give on this webpage has helped me extraordinarily. Much obliged for the greater part of your time and work.
    Used Forklifts For Sale
    Forklift For Sale
    Forklift Price
    Buy Forklift
    Used Forklift For Sale

    ReplyDelete
  95. Fantastisk indlæg, du har påpeget nogle utrolige fokus, jeg synes på samme måde at dette er et usædvanligt strålende sted.
    Tøj Til Store Kvinder
    Zhenzi
    Zoey
    Plus Size Modetøj
    Tilbud Og Udsalg På Dametøj

    ReplyDelete
  96. Extraordinary Article it its truly useful and imaginative update us as often as possible with new overhauls. its was truly significant. much obliged.
    Vegetable Seeds Online
    Buy Fungicides
    Buy Flower Seeds
    Buy Insecticides
    Buy Water Soluble

    ReplyDelete
  97. I love the look of your website. I recently built mine and I was looking for some ideas for my site and you gave me a few. May I ask you whether you

    developed the website by yourself.
    Commercial Builder,
    Tri-K Development,
    Tri-K Development,
    Industrial General Contractor,

    ReplyDelete
  98. To utilize frontier mail login you should have a Frontier User ID and have connected your Frontier record to this ID. On the off chance that you haven't just done as such, you can interface your record by marking into Frontier from the landing page. Once signed in, go to your profile and snap the Link Account button. When your record is connected, on your profile page you will see your present Frontier email addresses and the quantity of extra email accounts you can make.

    ReplyDelete
  99. We provide the best mathematics assignment help service to the students, who think math’s is the toughest subject for them. We have connoisseurs who can solve your any math’s problem with ease. As they are highly educated in the same field from top universities. So, what are you thinking, hire us now!

    ReplyDelete
  100. I like what you guys are up also. Such intelligent work and reporting! Keep up the superb works guys I have incorporated you guys to my blogroll. I think it’ll improve the value of my web site videoproduktion,
    job i Danmark,
    Generation Z,

    ReplyDelete
  101. HP printers, as an incredible asset for viable and solid printing with guided exactness, have become a basic prerequisite of our own just as expert life. Get your hands on the best HP printer in the market and set up the gadget followed by a lot of rules by means of 123.hp.com/setup. Make a point to utilize substantial qualifications to evade blunders however much as could be expected.

    ReplyDelete
  102. Trustnet.tech is an award winning IT company that provides web and mobile development services to StartUps, SMEs, Agencies as well as Enterprises

    ReplyDelete
  103. We are performing excellently for printer users, when they experience many technical issues associated to printing device. When your printing machine gives a printing command to your printing machine, you are experiencing the message that printer says offline HP error. Our live printer professionals have higher level of technical experience and technical capability of bringing back from offline to online mode in the simple ways.

    ReplyDelete
  104. If you have a problem logging into your account, one of them could be the incorrect entry of username and password, due to certain factors. Try to always cross-check your username and password before attempting to sign in. Also, if you find out that your problem is caused by the incorrect username or password, or both, you can go back and fix the errors and then press sign in again. If your internet connection is weak or absent, you can also fail to log in to your account. Try to obtain access to an Internet Service area in this situation.
    Mediacom webmail login allows you to access the use of various features such as mail, auto-reply, contacts, calendar, to-do list, and storage of documents. This service is available on your mobile android.

    ReplyDelete
  105. If you see an error login in your GMX Mail account, it may occur either because you enter incorrect login credentials, or your account has been hacked. If you're sure you've entered the correct login credential to access your GMX Mail Login account then someone with access to your account may have changed your account 's password.

    In such a method, resetting the account 's password for accessing it is recommended. To learn how to restore GMX Mail account passwords, Click here GMX Mail Login

    ReplyDelete
  106. Norton Login Account is one of the most effortless stage that permits you to oversee items download Norton antivirus and shield your gadget from online dangers • norton login Account is one of the least demanding stage that permits you to oversee items,
    Visit norton.com/setupwith product key and enter the setup key to get assurance. Download, introduce and initiate Norton at norton.com/setup.

    ReplyDelete
  107. Assignment Help Canada by knowledgeable and experienced writers work like magic. When you have doubts about your project writing or anything, talk to experts of greatassignmenthelp Get an instant and quick help at reasonable price.
    Online Assignment Help
    Assignment Help Online

    ReplyDelete