Skip to main content

6. SmartThings

The current problem that most devices have is that they function as a standalone being, and it require effort for tech competitors to actually partner with each other and build products that can truly connect with each other. SmartThings is here to make your every device, digital or non-digital, connect together and benefit you.
smartthings(Image Source: Kickstarter)
With SmartThings you can get your smoke alarms, humidity, pressure and vibration sensors to detect changes in your house and alert you through your smartphone! Imagine the possibilities with this.
You could track who’s been inside your house, turn on the lights while you’re entering a room, shut windows and doors when you leave the house, all with the help of something that only costs $500! Feel like a tech lord in your castle with this marvel.

Comments

Popular posts from this blog

Pl/SQL program to find square of a user input number Using Function

declare   value1 number;   value2 number;   mytotal number;   function myfun(myval1 in number, myval2 in number) return number is     total number;   begin     total := myval1 ** myval2;     dbms_output.put_line(total);     return total;   end; begin   value1 :=&val1;   value2 := &val2;  mytotal:= myfun(value1, value2); end;