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/


325 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
  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. 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
  31. 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
  32. 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
  33. 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
  34. 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
  35. mengetahui lebih lanjut bonus - bonus yang lain nya anda bisa langsung menanyakan poker99 yang akan selalu siap melayani dan menjawab semua

    ReplyDelete
  36. 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
  37. 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
  38. 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
  39. 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
  40. 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
  41. 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
  42. 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
  43. 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
  44. 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
  45. 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
  46. 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
  47. 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
  48. This comment has been removed by the author.

    ReplyDelete
  49. 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
  50. 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
  51. 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
  52. 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
  53. 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
  54. 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
  55. 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
  56. 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
  57. 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
  58. 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
  59. 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
  60. 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
  61. 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
  62. 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
  63. 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
  64. 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
  65. 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
  66. So few email service providers around the world have a wide variety of services for their devoted customers. Mediacom is one of the handfuls of service providers that has fine customer support, world-class mail protection features, and an error-free delivery network. But in order to enjoy these stellar services, you'll need to learn the best way to Mediacom Email login.

    ReplyDelete
  67. If you have trouble logging in to charter.net email. So, you just focused on email protection. Your computer scans antivirus and eliminates all the bugs from your computer. And then up to date with your phone. In addition, there are plenty of antiviruses on the market to address the average packages of your charter email login virus problem.

    ReplyDelete
  68. Below are some easy steps and some tricks to deal with ‘cannot connect to the norton login server’ issues. Try one or more of the below-mentioned tips and access Norton login in no time.

    ReplyDelete
  69. HP Printer is the well known printing device for offering its quality printing. However, some users are facing the issue of HP printer error code 0x83c0000a. Here, in these guidelines the steps are provided to you. If you need any assistance while following the methods, you can get in touch with the experts for assistance and get your issue fixed.

    ReplyDelete
  70. Norton Internet Security or Norton Antivirus products are the essential tools for protecting the computer or digital devices from malware, spyware, Trojans and other virus attacks. For Internet threats Norton products are very effective.

    norton.com/setup

    ReplyDelete
  71. Charter communication is the largest telephone and cable communication network in the United States. In addition, charter.net provides high-speed internet service. On the other side, webmail service charter.net provides you with the possibility to send or receive mails easily. If you want to learn how Charter email login functions then you will be obliged to read the entire site. So, as you know, charter.net email login is the simple way of building or logging into your charter webmail account and enjoying the email service benefits.

    ReplyDelete
  72. Very informative put up! This submit gives sincerely exceptional statistics. I locate that this put up is simply first rate. Thanks for this explanation and very nice information.
    black dog names, click here, Click here, Click here, Click here, Click here

    ReplyDelete
  73. 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 9 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
    - Perang Baccarat ( 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
    LINE : SAHABATQQ
    FACEBOOK : SahabatQQ Reborn
    TWITTER : SahabatQQ
    YM : cs2_sahabatqq@yahoo.com
    Kami Siap Melayani anda 24 jam Nonstop

    Daftar SahabatQQ


    Typesex69
    Ranseldunia
    Bodyfit45
    Cemesahabat

    ReplyDelete
  74. Xfinity is an official link that helps the user to register new users with it. Save on XFINITY Digital Cable TV, High-Speed Internet and Home Phone Services. Enjoy entertainment your way with great deals on XFINITY by Comcast. visit this site for more pieces of information CLICK HERE
    xfinity.com/authorize
    xfinity authorize

    ReplyDelete
  75. Xfinity is an official link that helps the user to register new users with it. Save on XFINITY Digital Cable TV, High-Speed Internet and Home Phone Services. Enjoy entertainment your way with great deals on XFINITY by Comcast. visit this site for more pieces of information CLICK HERE:-
    xfinity.com/authorize
    xfinity.com/activate

    ReplyDelete
  76. Charter Communications is one of the network professional companies that is most viewed and fastest growing in the US. To login to your record using your Username and Password, use the new webmail.spectrum.net page. You can easily sign in using the Web Browser. You will initially build a number of email accounts and usernames to capitalize on these administrations. Webmail spectrum lets you create up to seven Spectrum email login addresses at no extra charge as long as your record is dynamic.

    ReplyDelete
  77. If you can't print from Quickbooks, then there could be a problem with your QB software or communication error between printer and QB. QuickBooks is an excellent account solution software that can provide you payroll features, tracking of funds, bill payment, and plenty more; also, the users need to take the printouts for invoices and bills. Hence if there is an issue in printing with QB software, then you need to address it immediately. Due to the unprecedented nature of this printing error, you might need an expert’s help. Can’t print from QuickBooks? Call us now for immediate assistance.

    ReplyDelete
  78. https://medium.com/@IvyyKriste/content-com-avast-android-mobilesecurity-temporarynotifications-to-obtain-and-set-up-5ac21e7dfb25

    ReplyDelete
  79. What to do if I have forgotten my McAfee Account login password? Not to worry if you have forgotten your McAfee Account Login password then you can reset your McAfee Login password in easy steps.

    Login McAfee Account

    How to Login McAfee Account

    Mcafee total protection login

    ReplyDelete
  80. Rural Assignment Help
    https://www.myassignmenthelp.net/rural-management-assignment-help

    I am very happy with the service offered by Myassignmenthelp.net. The writer worked with me did a fabulous job.

    ReplyDelete
  81. idm crack known as Internet Download Manager is a tool that allows you to increase download speed up to five times, continue downloads and schedule. Full troubleshooting and recovery features cause intermittent or interrupted downloads to restart due to loss of connection, network problems, computer shutdown, or unexpected power outages. The simple graphical user interface makes IDM user-friendly and easy. IDM has a smart download logic accelerator with dynamic file segmentation and secures multipart download technology to speed up your downloads. Unlike other download managers and accelerators, Internet Download Manager dynamically segments files downloaded during the download process and reuses available connections without additional connection and connection levels to optimize acceleration performance.

    ReplyDelete
  82. Are you wondering over how to connect Canon printer to Wi-Fi Network ? If yes, it’s easy to do as the Canon printer has been received a commendable response from the users in providing user-friendly features. If you don’t know how to connect printer to a Wi-Fi, get connected to the experts and get your issue fixed immediately.

    ReplyDelete
  83. mcafee.com/activate - people store a great deal of information on their savvy gadgets imagining that they are secure. pictures, recordings, archives, sheets, and so forth, everything is put away in our mobiles, pcs, and mac gadgets. In any case, how frequently do you consider your gadget security? someone may be striving to get to your own or expert information. Indeed, that is alarming!
    mcafee.com/activate

    office.com/setup

    norton.com/setup

    office.com/setup

    norton.com/setup

    mcafee.com/activate

    ReplyDelete
  84. I like this post, because it's a very useful and creative blog. So, there are some blogs for me to visit and read too. These are extremely informative. Thank you so much.

    Scan To Email
    Scan To Computer
    123.hp.com/setup
    123.hp.com/setup
    123.hp.com/setup
    123.hp.com/setup
    123.hp.com/setup
    Best Printer Support

    ReplyDelete
  85. Get Assignment Help Wales, Essay Writing Services, Dissertation Help, Thesis Help in Wales at Affordable Prices. Our Writers Providing Plagiarism-free Academic Paper Writing Services.For more services : Finance Assignment Help | Nursing Assignment Help | Essay Help UK

    ReplyDelete
  86. If you are a new user with Roku and want to setup your Roku Device, then you can follow the guidelines which is listed with user guide which you received with your purchase. If you are not able to find the user guide then search for step by step Roku device setup or Installation guide.
    https://www.easyroku.com

    ReplyDelete
  87. canon printer won't connect to wifi ? Do you need any help in resolving this error? If yes then get connected with our experts. We are available 24/7 to help you. Our expert team will resolve this error very soon. To know more check out our website canon printer offline.

    ReplyDelete
  88. The Cash App is a very well known payment gateway and allows peer to peer money transfers. Money transfer with Cash App is prompt and involves almost no zero service charges. If you create a Cash App account and cash app login then it gives you advantages such as How to activate cash app card, Cash app transfer failed, cash app card activation number, and even buy bitcoins.

    ReplyDelete
  89. Hello
    Great site! You will be a excellent job in this distinct own article. This genuinely is an extremely handy site informative article, very helpful.

    www.trendmicro.com/bestbuypc
    www.trendmicro.com/bestbuy
    www.trendmicro/bestbuypc
    www.trendmicro.com/bestbuy download

    ReplyDelete
  90. Play Real money and bitcoin poker games such as Texas Hold'em at Ignition Poker on your desktop or mobile.
    Texas holdem poker
    How to play poker
    Real Money Poker

    ReplyDelete
  91. I'm convinced you can tell me a massive number of brand new things. Great chance with a different one! IT Infrastructure Company

    ReplyDelete
  92. Very helpful advice in this particular post! It’s the little changes that make the largest changes. Great suggestion. Very good opinion. Nuru Massage in Tucson

    ReplyDelete
  93. select introduce office. after the establishment document is downloaded, what occurs next relies upon which internet browser you use. the simplest method to introduce microsoft office is to utilize the edge browser
    norton.com/setup
    office.com/setup

    mcafee.com/activate

    ReplyDelete
  94. You can do norton.com/setup download easily by hovering right click on the option of Downloads folder on the device. After downloading, you can hit on the Extract option to hit on it. After that, you need to press down the setup file and then continue the further process. A window having a license agreement will appear to the users for their approval. After that, hit on the Agree button and in the end, the users have to follow the instructions to complete the installation process.

    ReplyDelete
  95. I loved reading the preceding post, it explains every thing in lovely detail, therefore this guide is incredibly intriguing and potent. Thank you and fantastic luck at the following posts.

    Trend Micro Internet Security
    Install Trend Micro Internet Security
    www.trendmicro/bestbuypc
    www.trendmicro.com/bestbuy
    Trend Micro Geek Squad
    Trend Micro Geek Squad Download

    ReplyDelete
  96. Excellent fun, fantastic position, and Thank you for sharing this excellent website.
    Also read:
    usa.kaspersky.com/kisdownload
    usa.kaspersky.com/ktsdownload
    kaspersky Antivirus

    ReplyDelete
  97. Thanks, you abandon a fantastic post. I like and love your loyalty. Usually, I really don't discuss blogs; your essay is compelling never to stop speaking about it. You are ok, proceed.
    usa.kaspersky.com/kisdownload
    usa.kaspersky.com/ktsdownload
    kaspersky Antivirus

    ReplyDelete
  98. Thank you for sharing amazing intellect and information. It's quite useful and detailed because we are on the watch for this specific bit of information for quite some time.

    IT Technology
    Software Service

    ReplyDelete
  99. Wowza truly enjoyed this specific page. As a newcomer, it surely gave me an excellent deal of strength.
    Roadrunner change password
    Reset MSN password

    ReplyDelete
  100. You genuinely have a wonderful website. I would like to participate somebody's location to find information from several other experienced individuals.

    PCSecure
    The PCSecure

    ReplyDelete
  101. Here, you will get tips on how to delete Cash app account which is new Thusly, for it, you are expected to tap on the Account and Settings tab and subsequently move into the individual information tab. Next, you have to peer down the bottom of the page to pick the Deactivate account.

    ReplyDelete
  102. Good morning friends, The article information which you write is very interesting and in that website others blogs I found it useful content. From your writing many beginners learn many things and thank you. online assignment help australia -
    auditing assignment -
    university assignment help australia

    ReplyDelete
  103. The article is very interesting and effective, it really explains everything. Thank you and good luck.
    Shein Missing Package
    Shein Missing Package Refund

    ReplyDelete
  104. سیاهی دور چشم یکی دیگر از نشانه های کم خوابی و در موارد نادر بیماری های کبدی است که اغلب پزشکان با درمان نشدن آن بوسیله نسخه هایی که می پیچند بلافاصله به بهانه ارثی بودن این عارضه رجوع می کنند تا سرپوشی بر ناتوانی خود در درمان سیاهی دور چشم گذاشته باشند اما مارک های متنوع کرم دور چشم برای رفع سیاهی دور چشمان شما در داروخانه ها و فروشگاه های لوازم آرایشی وجود دارد که با امتحان نمودن آنها می توانید بهترین مارک کرم دور چشم برای تیرگی چشمان خود را یافته و این عارضه قابل درمان را برای همیشه برطرف نمود.

    ReplyDelete
  105. واتساب الذهبي هذه النسخه من واتس اب ابو عرب تتميز بعدة ميزات واضافات غير موجوده في نسخه اخرى ولهذا لديه شعبيه قويه لدى كثير من المستخدمين, تم تطوير هذا الواتس الذهبي WhatsApp Gold من قبل المطور المشهور ابو عرب الذي اشتهر في بداية عام 2015 واستمر الى عامنا هذا 2021, وقد زاد عدد مستخدمين واتس اب الذهبي بسبب اعجابهم بهذا الواتس اب وايضاً لوجود عدة ميزات كثيره فيه مثل اخفاء الظهور وتجميده وتغير الثيمات وزيادة حجم الحاله الى اكثر من ساعة والكثير من الاضافات سوف نتكلم عنها في هذا الموضوع من ، واتساب الذهبي WhatsApp Gold.

    ReplyDelete
  106. تنزيل واتساب الذهبي
    يتميز بالعديد من الميزات والإضافات غير الموجودة في إصدار آخر وهذا هو السبب في أنه يتمتع بشعبية كبيرة بين العديد من المستخدمين. تم تطوير تطبيق WhatsApp Gold هذا من قبل المطور الشهير أبو عرب الذي اشتهر في بداية عام 2015 واستمر هذا العام 2021 ، وازداد عدد مستخدمي WhatsApp Gold بسبب إعجابهم بهذا WhatsApp وأيضًا بسبب الميزات العديدة في مثل إخفاء المظهر ، تجميده ، تغيير المظهر ، زيادة حجم العلبة لأكثر من ساعة ، والكثير من الإضافات

    مدونة المحترف أحمد خالد للمعلوميات
    واتساب الذهبي WhatsApp Gold
    أندرو ويب

    واتس اب الذهبي هذا الإصدار من WhatsApp Abu Arab يتميز بالعديد من الميزات والإضافات غير الموجودة في إصدار آخر وهذا هو السبب في أنه يتمتع بشعبية كبيرة بين العديد من المستخدمين ، تم تطوير WhatsApp Gold هذا بواسطة المطور الشهير أبو عرب الذي اشتهر في بداية 2015 واستمر هذا العام 2021 ، وازداد عدد مستخدمي WhatsApp Gold بسبب إعجابهم بهذا الواتس اب ، وأيضاً بسبب الميزات العديدة الموجودة فيه ، كإخفاء المظاهر وتجميدها ، وتغيير الثيمات ، وزيادة حجم الـ WhatsApp. القضية لأكثر من ساعة والكثير من الاضافات التي سنتحدث عنها في هذا الموضوع من WhatsApp Gold.

    ReplyDelete
  107. Being an ultra-smart device that generally functions without any need of aid and having myriad functionality, you may require to connect with Alexa support expert to troubleshoot the glitch that anyone can face anywhere and anytime. But what to do when you are stuck in a situation where you need to connect with expert and seek their help? By just dialing Alexa Support Number Australia, you will be connected to some of the finest specialist in the industry and easily obtain Amazon Alexa help in whatever case you want.

    ReplyDelete
  108. That's a extremely insightful and useful article, definitely. I ran across this very fascinating and it's to enter my collection. Very great job!

    activate mcafee product key
    mcafee error code 16502 and 17001

    ReplyDelete
  109. Very Informative Blog
    Here I am Sharing some Information about Etisalat Yellowpages.ae. It is a business portal for sellers and buyers to connect with each other. As a leading B2B and B2C site, it is providing various categories of products and services across the UAE.
    Here is Etisalat yellowpages Facebook Page.

    ReplyDelete
  110. Hi, I should say it was a really valuable adventure for me personally when I checked out your many others useful blogs subject and, I really like your work and thanks a lot because its help me a lot. Happy new year buddy. assignment writing services -
    essay writing services -
    childcare assignment help

    ReplyDelete
  111. Please keep us informed like this. Thank you it is really a great and helpful piece of info.
    Website :- electrician near me in nagpur

    ReplyDelete
  112. Hi
    My Name Boden Martin
    We are an outsiders technical support suppliers for MSN Account Settings | Hotmail Pop3 Settings. If you facing any problem in MSN POP Settings Get instant help for MSN POP IMAP SMTP Settings setup Visit MSN POP Setting.

    ReplyDelete
  113. Hi
    My Name Boden Martin
    We are an outsiders technical support suppliers for MSN Account Settings | Hotmail Pop3 Settings. If you facing any problem in MSN POP Settings Get instant help for MSN POP IMAP SMTP Settings setup Visit MSN POP Setting.

    ReplyDelete
  114. cricket game online Fantasy Power 11 if you have a good knowledge of Cricket you Can earn real money or Paytm cash. Download Link, and Review.If You have skills related to cricket, football, Kabaddi so you can play fantasy cricket in Fantasy Power11 and win real Cash.

    ReplyDelete