Showing posts with label Recrosoft. Show all posts
Showing posts with label Recrosoft. Show all posts

Monday, 8 June 2015

Brillo: Now Android Joins the IoT Bandwagon





Last week in Google I/O Google made an announcement about its latest OS: Brillo. With Brillo Google aims to create an operating system that links our real world things with each other so that our appliances like microwave, televisions, washing machines, air conditioners can all communicate with each other .
In I/O Google also confirmed that Project Brillo will be based on its existing Android operating system but it will be significantly simplified for use in objects other than smartphones and tablets.
Some of the key features which Brillo offers are:
  • Its derived from Android
  • Has minimal System Requirements
  • Broad Silicon Support
  • Easy to Secure

A screen capture from I/O provides a better insight on the same

But Brillo is not alone , Brillo is packed with a powerful communicating layer called Weave. This is the layer which would enable IoT devices to communicate with each other , it’s the glue which will bind the cloud, your mobile and your appliance together . Using Weave it will be possible for devices to publish their current state and also the various supported states. Weave will support JSON based developers APIs thus providing out of the box cross platform support and making the entire system developer friendly.

Brillo will be available to the developer community from Q3 this year and we can expect the complete developer stack with Weave somewhere around Q4.

With Brillo Google has taken a giant step in bringing together this fragmented world of IOT, Google has put forward a very well formed strategy, now its the execution which will decide whether Brillo will prove to be another Android in Making or just another research product to be shelved.
(Image Source: Google I/O )
For experiencing and discussing Brillo based Mobile apps or other Internet of Things Projects please do reach us(Recrosoft Technologies Pvt. Ltd. ) at  http://www.recrosoft.com

Saturday, 20 December 2014

Connected Car: The Google Way

We all have been using Android phones in our cars, we rely on these Android devices for a plethora of things, whether it’s for GPS based routing or for playing our favorite music or just taking a phone call, our Android device is there to help us. If that’s the case then why the project Android Auto is making so much buzz these days .. Is there anything special underlying there or it’s just a transitory craze.. Let’s dig deeper into the project to find out what exactly is Android Auto..

Image Source: Android.com
Android Auto was designed giving safety the utmost priority. We all know how many times we have to look at the smartphone screen when we try to use the same in our car. Most of the time the information is not easily available and we have to make some interesting swipes to reach it and that too while driving.. Android Auto provides simple and intuitive interfaces, provides an integration with steering wheel controls  and supports voice commands thus minimizing the attention required for operation and also ensuring that you get what you require without disturbing your driving.

ImageSource: Androd


Android Auto uses cards to bring out all the useful information that is relevant for you. The cards are smart enough to appear when you actually need them. It also provides a voice guided navigation and traffic update so that you take the right route. Also Android Auto support seamless integration with your  smartphones thus taking care of your music, contacts ,notifications  and calls when you are on your way. Last but not the least there are beautiful auto apps already in market which can be used with Google Auto..

Enough  of Gyaan I am a developer , whats there for me in Google Auto:

 As Google says.. Android Auto basically extends the Android Platform into the car. When a user connects is Android 5.0+ smartphone to a compatible vehicle , the Auto provides an Android Experience to the user which is optimized for the car. Once connected , user can interact with compatible apps and services through voice commands and Car’s Interface like steering controls / dashboard buttons.

The developers can write their apps without having to worry about the vehicle specific  hardware , they don’t have to worry about screen resolution , touch controls, knobs or other hardware controls , the apps created using this platform provide same user experience on all the compatible vehicles running Google Auto.

As of now there are two type of apps which are supported by Auto :
  •     Audio Apps: These apps all users to browse and play music and spoken audio content in car.
  •     Messaging Apps : They receive incoming notifications, read out messages and send out replies using the voice interface.

To start with the development  , no vehicle specific hardware is required even a normal android tablet/ smartphone is good enough to begin the development, all you need to do is to just adjust your manifest for the car capabilities that you need to use. The support for Auto is available from Android 5.0 (API level 21)


The Road Ahead:  Although the Auto is going good but Google is planning  for something much bigger than this . If rumors are to be believed then Google is planning to build a version of Android  directly into the cars, thus allowing drivers to use all Android specific features even without plugging their smartphones in the car. As Auto was tightly coupled with the connected smartphone.  But if Android M provides this feature then it would not only solidify Google’s position in the market but also  provide a reply which is much  bigger than the offering of their rival apple (As Car Play is pretty much similar to Android Auto )

For experiencing and discussing Auto based apps please do reach us(Recrosoft Technologies Pvt. Ltd. ) at  http://www.recrosoft.com

Saturday, 13 December 2014

Google Polymer: The Future of Web UI Frameworks

Google brought material design as new unified design paradigm for Android, Chrome and Web based apps. The core idea behind Material Design is to unify the motions, visuals and interaction designs across various platforms and devices. The material design is developed with the aim of bring the feel of ink and paper (tactile material) to the virtual world.

The Polymer library is basically a set of polyfills which can be used to create Web Components. Polymer library provides the underlying structure for defining, creating and rendering complex components in a  simple manner.  It uses the tag based declarative approach to use the prebuild components, thus making the life of developers easier. This approach helps in multiple ways like:
  •  For developers the naming convention becomes easy as Tag Style conventions are used
  • The complex controls are easier to use as using a custom control just requires declaring a tag.
  •  A  suite of custom controls are available at user’s disposal and the customizing these controls is also supported.

Polymer and material design can be seen in action in Topeka app. For a detailed experience of Topeka please use the following link Topeka(https://www.polymer-project.org/apps/topeka/)



For a detailed list of the components provided with polymer please use the following link

Polymer Architecture
(Image Source: toptal.com)


Native Layer: Needed features currently available natively in all major browsers.

Foundation Layer: Polyfills that implement needed browser features not yet natively available in the browsers themselves. (The intention is for this layer to disappear over time as the capabilities it provides become available natively in the browser.) The foundation layer comprises of following technologies:
a.       DOM Mutation Observers and Object.observe() for observing changes to DOM elements and plain Javascript objects
b.      Pointer Events: Handle Mouch and Touch events in a similar way across all platforms
c.       Shadow DOM: For encapsulating structure and style inside elements
d.      Custom Elements: For defining our own custom HTML5 elements
e.      HTML Imports: Package custom elements  .These packages include CSS , HTML and Javascript
f.        Model Driven Views (MDV): For data binding directly in HTML
g.       Web-Animations: API for unifying animation approach across various platforms

Core Layer: The necessary infrastructure for Polymer elements to exploit the capabilities provided by the Native and Foundation layers..

Elements Layer:  This layer consists of UI and non UI components built on the core layer. The layer provides aset of elements which serve as the building blocks for creating an application.  The layer provides elements for functionality like ajax, animation, flex layout, and gestures. Encapsulation of complicated browser APIs and CSS layouts. UI component renderers such as accordions, cards, and sidebars. Polymer is very similar to native HTML5: “attributes in, events out”.     

Its architecture is very component-oriented, its components being HTML elements. Responsive design is also built into most of the widgets, which implies that they transform so that they work best on a given platform (cell phone, tablet, desktop, etc.).

Polymer versus other frameworks
Polymer is not the framework to end all other frameworks. Instead, existing frameworks can be based on the same foundations. In fact, the functionality of most of the APIs that were mentioned above are similar to other UI framework such as Ember.js or AngularJS.

Getting your hands dirty
The getting started guide available on the project page is the best place to start with the link to the same is mentioned here https://www.polymer-project.org/docs/start/tutorial/intro.html
The next step is to get the paper elements , which can easily be downloaded by following one the following approaches:

To start with check out this video from Google , which takes you through intricacies of Polymer



The Future Is Here
Going forward Web Components will be becoming more and more popular and would radically change the way web apps are build. Polymer is just an example which has materialize this approach and had made this possible. Polymer gives one the ability and freedom to create components which can be customized as per the needs of the application. Also once developed these components can be shared and reused easily across teams or communities.

For experiencing and discussing awesome apps  please do reach us(Recrosoft Technologies Pvt. Ltd. ) at  http://www.recrosoft.com


Thursday, 4 December 2014

When Everything Is the Cloud, Will Nothing Be the Cloud?

Many think Cloud Computing as an unreliable and risky approach to storing your data, cloud computing is actually an excellent way to create a more agile technological infrastructure for your company and cut costs by reducing capital. Some of the misconceptions surrounding cloud computing which might stand between your company and the success of its objectives for mobility, longevity and efficiency.

1. It’s just a craze
Seen as no substitute for the present computing model, cloud architecture is both credible and effectual. Despite the idea that the cloud is somehow disconnected from current computing in fact if you are using online banking, social media, you’re already a part of the technological revolution. Big contenders like Apple have been keen to embrace cloud computing, affirming the idea that this is a technology revolution with longevity. Dismissing cloud computing as a nothing more than a passing trend is an oversight that is likely to cost you dearly as you continue to pay for the hosting and upkeep of your data.

2. It’s not as safe and secure as conventional servers
Its name might not inspire self-confidence, yet cloud computing is actually a safe and substantial way to store, share and secure your data. Whilst the media has been keen to spread tales of cloud computing’s unreliability, in fact by putting control of the process back into the hands of the organization directly, cloud computing restores command to your business. Although it is important to correct the supposition that cloud computing is accompanied by host-based protection tools, there is no need to rule it out as a useful tool. By not concentrating data in one site and using encryption software and behavior-based key management services it is easy to build additional security around your data.

3. It’s  very costly
There is no denying that there will be drastic costs involved in making the change to the cloud, but as it removes the requirement for IT management, in the long term cloud computing will save a lot your business money. This is a decision which no present day organization can run away from.

4. It makes things complicated
Another misapprehension about cloud computing is that it is too complex to execute without severe hassle and bargained productivity. Yet with many different types of cloud computing to choose from, your organization should have no problem in choosing a compliment to meet your needs and keep things simple for staff and managers alike.

5. It’s just for the big organization
Cloud computing is not the reserve of corporations in the Fortune 500. By allowing companies to maintain their hardware onsite and concurrently avoid having to obtain costly software licenses, solutions like virtual desktop infrastructure can help companies of any size to reduce their expenditure.

6. Changes are technical rather than strategic

With the assumption that the cloud is simply a matter of implementing technological changes to the way your company is run is a big blunder. Approaches must be set up to incorporate processes – both strategic and staff consequent – to reap all the benefits offered by cloud technology. The alignment between corporate strategy and technology encouraged by the cloud is a great way to utilize a world of commodities with the benefit of using resources present within the business.

If you have any cloud specific needs or want to build some awesome apps , please feel free to reach us http://www.recrosoft.com

Saturday, 15 November 2014

Bluetooth Low Energy and Android

Bluetooth low energy or Bluetooth LE or Bluetooth Smart  is basically a wireless personal area
network technology designed and marketed by the Bluetooth Special Interest Group aimed at novel applications in the healthcare, fitness, security, and home entertainment industries.

With Android 4.3 (API Level 18)  the support for Bluetooth Low Energy comes built in the platform and also the multiple APIs have been made available which the apps can use to discover devices, query for services, and read/write characteristics.

When compared to Classic Bluetooth, Bluetooth Smart considerably reduces the power consumption  and the maintenance cost  while maintaining a similar communication range.  This allows Android apps to communicate with BLE devices that have low power requirements, such as proximity sensors, heart rate monitors, fitness devices, and so on. The fields for which these apps can be build are endless , but to start with I am listing down a few areas where BLE based apps are picking up at a very fast pace:
a.       Health Care
b.      Sports and Fitness
c.       Notifications and Messaging Alerts
d.      Proximity sensing

This video from google provides a great overview of how Android is leveraging this technology to spread joy among the  android community and preventing  battery drain..




For experiencing and discussing awesome apps  please do reach us(Recrosoft Technologies Pvt. Ltd. ) at  http://www.recrosoft.com

Friday, 31 October 2014

Google Fit: Lets Warm Up..

Google Fit App

When it comes to our fitness, we often go crazy.  But again our god “Google” comes to our rescue J . Google recently introduced  Google Fit which is an app to help track all our physical activities with minimal human interventions. All one need is a smartphone.
Google Fit leverages the sensors which sit inside the Android Phones to detect our physical activities like cycling, walking and running. Another great thing about Google Fit is that one can easily set his/her fitness goals and monitor them in real time on a platform of your choice ie desktop / mobile / tablet or a wearable

Google Fit can be connected to a plethora of devices and Apps (eg. Strava, Runkeeper, Withings etc.) The app aggregates the data from various sensors and gives us a consolidated view of our activities. Its like a one stop shop for all our fitness/activity records.

(Image Source: Google Play)


The Google Fit Platform

The Google Fit App is based upon the Google Fit Platform that Google has recently introduced. The  platform is a set of APIs which mingle data from multiple sources (devices, apps sensors etc). The Platform helps developers to :
  • .       Store Data from Wearables and Sensors
  •     Share data across apps built on the platform
  •      Persist user data in cloud thus decoupling the data from the user devices

The Google Fit Platform consists of 4 major components , which are:

a.     The Fitness Store:  It’s the central place where data from all sources is maintained
b.    The Sensor Framework: It defines high level representations for various sensors thus making the interactions with Fitness Store easier
c.     Permission and User Control: Controls all the permissions and authorizations required for accessing and sharing Fitness Data
d.    Google Fit API: Android and REST API are provided to enable developers use Fitness data in native android as well as other platforms.

(Source:https://developers.google.com/fit/overview)


We will dig deeper on each of these modules in our next Blog..

So wherever you go , just slip your mobile in your pocket and your personal trainer is with you , following and monitoring all your fitness activities… Stay Fit.. Live Big ;)

For experiencing and discussing awesome apps  please do reach us at http://www.recrosoft.com





Sunday, 26 October 2014

The ABC of Internet of Things

We found an interesting article on IoT ( courtsey: computerworld.in) and thought of sharing the same with you.


What is the Internet of Things?

There is no agreed-upon definition, but there is a test for determining whether something is part of the IoT: Does one vendor’s product work with another’s? Does a door lock by one vendor communicate with a light switch by another vendor, and do you want the thermostat to be part of the conversation?

Here’s the scenario: As you approach the front door of your house, a remote control built into your key unlocks the door. The door’s wireless radio messages the network, which prompts the hall light to turn on. The house thermostat, which was lowered after you left for work, returns to a comfort zone. Everything is acting in concert, which brings us to the elegant definition of IoT by Paul Williamson, director of low power wireless for semiconductor maker CSR: “A true Internet of Things is coordination between multiple devices.”

What makes the Internet of Things almost human?

In a word: Sensors. Many IoT devices have sensors that can register changes in temperature, light, pressure, sound and motion. They are your eyes and ears to what’s going on the world. Before we talk about what they do, let’s describe them. These sensors are part of a device category called a microelectromechanical system (MEMS) and are manufactured in much the same way microprocessors are manufactured, through a lithography process. These sensors can be paired with an application-specific integrated circuit or an ASIC. This is a circuit with a limited degree of programming capability and is hardwired to do something specific. It can also be paired with microprocessor and will likely be attached to a wireless radio for communications.

Can you give an example of how IoT sensors work?

Here’s the scene: You are away on vacation and the house is empty. A moisture sensor detects water on the basement floor. That sensor finding is processed by an app, which has received another report from a temperature sensor that detects the flow of water in the main water pipe. (When water flows, it takes away heat and lowers the temperature).

That both sensors are detecting anomalies is cause for concern. A high rate of flowing water may signal a burst pipe, triggering an automated valve shutoff; a slight water flow might be a running toilet, and the water on the basement floor by routine leakage from a heavy rain. In either case, you get a machine-generated message describing the findings.

Here’s how you investigate. Via a mobile app, you get two one-time codes to unlock your front door, one for your neighbor and another for a plumber. When the door is unlocked, a text alert tells you who entered. Having knowledge of the condition of your home may be a big driver of IoT adoption.

How will IoT sensors work in public spaces?

Take parking. Cities are embedding sensors in on-street parking spaces from a company called Streetline that can detect if a car is parked in one. Drivers looking for a parking space use the company’s mobile app, which lets them know when a space becomes available. Streetline has also added sound level and surface temperature sensors to help cities determine the best times to apply salt and use noise sensors to ensure compliance with ordinances.

In the public arena, a smartphone can double as a sensor. In Boston, as people drive down a road, the phone’s accelerometer sensor will keep track of bumps. An accelerometer can tell up from down, but more precisely it measures acceleration. All it took to turn a smartphone into a road condition monitoring tool, was an app that used its existing sensor in a new way.

Do you want your bathroom scale to talk to your refrigerator?

The IoT opens up a lot of opportunity for creative app writers. Let’s start with a smart refrigerator. You buy your groceries online and have them delivered to your home. It has now become advantageous for grocers and food product makers to add RFID tags to their products. The refrigerator knows what is inside via weight-sensitive shelves and expiration dates. It can also help you keep a grocery list, automate orders and provide nutritional information.

For instance, let’s say you decide to take a pint of Ben and Jerry’s ice cream out of the freezer. When that happens, a connected wireless speaker announces, loudly: “Please reconsider this selection. As requested, here is your most recent weight and BMI.” The wireless speaker is reporting data collected from your bathroom scale. The scale was never designed to communicate with a refrigerator, but an app writer made it so by linking data from the scale and fridge. This scale-fridge-speaker combination may seem silly, but here’s the point: In the IoT, app writers now have the ability to connect seemingly disparate things to create new types of functionality.

How do IoT devices communicate?

An IoT device will have a radio that can send and receive wireless communications. IoT wireless protocols are designed to accomplish some basic services: Operate on low power, use low bandwidth and work on a mesh network. Some work on the 2.4 GHz band, which is also used by Wi-Fi and Bluetooth, and the sub-GHz range. The sub-GHz frequencies, including 868 and 915 MHz bands, may have the advantage of less interference.

Why is low power and low bandwidth important in IoT?

Some IoT devices will get power from electrical systems, but many, such as door locks and standalone sensors, will use batteries. These devices send and receive small amounts of information intermittently or periodically. Consequently, the battery life of an IoT device can range from 1.5 years to a decade, if the battery lasts that long. One IoT maker, Insteon, uses both radio and powerline communication, which can send data over existing electrical wiring as well as via a radio, which it says will offer an increased measure of reliability.

What is a mesh network?

Devices in a mesh network connect directly with one another, and pass signals like runners in a relay race. It is the opposite of a centralized network. The transmission range of an IoT device on a mesh network is anywhere from 30 feet to more than 300 feet.

Since mesh network devices can hand-off signals, they have an ability to connect thousands of sensors over a wide area, such as a city, and operate in concert. Mesh networks have the added ability of working around the failure of any individual device. Wireless mesh IoT protocols include the Z-Wave Alliance, the Zigbee Alliance, and Insteon, which also has an alliance of vendors. These protocols aren’t directly interoperable, although there are workarounds via hubs (more on this later).

ZigBee is an open protocol, but its critics say that not all of its implementations are necessarily the same. ZigBee runs a certification to ensure standard deployments. Insteon and Z-Wave are proprietary, which may ensure standardization of implementation.

What’s the best wireless network for the IoT?

Today, no wireless technology has a dominant market share in IoT applications. Nick Jones, an analyst at research firm Gartner, said more than 10 IoT wireless technologies will “get significant traction” in IoT applications. These wireless technologies include cellular, satellites and new communications such as Weightless, which uses “white space,” or unoccupied TV channels. More importantly, no one wireless technology will meet every need and circumstance. A connected car, for instance, will use a cellular network to contact your home network.

Will I need a gateway or hub in the IoT?

A gateway, bridge or hub provides a connection point between your home network and other devices. The hub works with your home router and provides communications to the machines, devices and sensors that are part of your IoT universe. You will want, by default, your Zigbee smart meter to communicate with your Z-Wave or Insteon thermostat. This will also be true for the washing machine that is connected to a smart metering system and starts a wash only when electric rates are at their lowest point. These connections will be established through hubs that support multiple wireless technologies.

SmartThings, for instance, makes a hub that supports both Zigbee and Z-Wave, as well as a platform to build connecting applications. Eventually, these wireless technologies may be included in home routers, set-top boxes from your cable companies, or even devices such as a Google Chromecast.

Won’t Bluetooth win in the end?

Bluetooth Low Energy was originally aimed at wearable technology, not the broad IoT market. But in early 2014, CSR, a semiconductor maker, announced a mesh network for Bluetooth, meaning it could now connect to thousands of things.

Bluetooth’s ubiquity in mobile devices means that a Bluetooth mesh network as a broad IoT platform will have some advantages. Because Bluetooth is already a feature on smartphones, a smartphone could act as a management hub inside a home. But it’s not perfect. A hub will be needed if someone wants to connect with the home network remotely, such as from work.

Do the big consumer product vendors really want an Internet of Things?

Skeptics say it’s unlikely that all the big vendors will embrace open standards. A more likely outcome for the IoT are technological islands defined by proprietary data interchanges.

Without open standards or open communication protocols, devices on the network won’t be able to share data and work in concert. Will Apple develop products that can connect with Samsung products? Will Bosch products communicate with those from Samsung or Sears? Maybe not.

Consumers will be frustrated and will be told that they need to buy into a particular vendor’s product partner network to get a full IoT experience.

Can open source force the big vendors to play nice?

Open source advocates are hoping they can avert a fracturing of the IoT. The Linux Foundation, a nonprofit consortium, created the AllSeen Aliance and released a code stack in late 2013 that can be used by any electronics or appliance maker to connect to another product. The alliance hopes that the sheer weight of adoption of this stack, called AllJoyn, will help to push the IoT toward open standards. AllJoyn is agnostic about wireless protocols, and support for Bluetooth LE, ZigBee and Z-Wave can be added easily by the community.

Will the IoT destroy what little privacy you have left?

Privacy advocates are plenty worried about the IoT’s impact on consumers. Part of this is due to the arrival of IPv6 addresses, the next generation Internet protocol. It replaces IPv4, which assigned 32-bit addresses, with a total limit of 4.3 billion; IPv6 is 128-bit, and allows for 340 trillion trillion trillion addresses or 340,000,000,000,000,000,000,000,000,000,000,000,000. This makes it possible to assign a unique identifier to anything that’s part of the IoT (although not everything needs to be IP addressable, such as light switches). This may enable deep insights into a home. Smart metering systems, for instance, will be able to track individual appliance use.

“Information about a power consumer’s schedule can reveal intimate, personal details about their lives, such as their medical needs, interactions with others, and personal habits,” warned the Electronic Privacy Information Center, in testimony in late 2013 at a Federal Trade Commission workshop. This is information that may be shared with third parties. At this same FTC workshop, another leading privacy group, the Center for Democracy and Technology, outlined its nightmare scenario.

Light sensors in a home can tell how often certain rooms are occupied, and temperature sensors may be able to tell when one bathes, exercises or leaves the house; microphones can easily pick up the content of conversations. The message is clear: Courts, regulators and lawmakers will be fighting over IoT privacy safeguards for years to come.

Will my smart washer attack me?

Security experts are worried that consumers won’t be able to tell the difference between secure and insecure devices on their home network. It will be a threat to enterprise networks as well. These devices, many of which will be cheap and junky and made by who-knows-who overseas, may not have any security of their own.

Security researchers imagine problems, such as the connected toilet, demonstrated at a recent Black Hat conference, which flushed and closed its lid repeatedly. Hackers could create havoc by turning appliances and HVAC systems on and off. Baby monitors have been successfully taken over by outsiders. One advantage that IoT security may have is it’s still in its early stages, and the security community has a chance to build IoT systems with a strong measure of protection. Cisco is fishing around for ideas. The company is running a contest (with a June 17 submission deadline) with $300,000 in prize money for ideas for securing the IoT.

When will the Internet of Things be ready for prime time?

Vendors will be sorting out the various protocols and technologies for years. Consumers are curious, perhaps, but sensors and hubs for the home aren’t flying off the shelves. There are real IoT uses today, especially for home monitoring and security. For now, the big users of sensor networks and remote intelligence gathering are businesses and governments.

Governments are deploying sensors to alert them to failed street lights, leaks in water systems and full trash cans. Sensors will likely have a major role in traffic control, forest fire and landslide detection. Remote sensing is already mainstream in many industries, office buildings and in the energy supply.

It’s the consumer applications that get the most attention because they involve almost every industry and platform: health systems, home energy use, hardware, home building, electronics and the entire category of wearables, including clothing. Even plumbers will have to be aware of the IoT because of connected shut-off valves. But no one is going to stand in line for the latest smart refrigerator. It isn’t the next iPad. The IoT rollout will be slow and will occur over many years, as appliances are replaced and home electrical systems are upgraded with smart devices.

What’s the worst case scenario?

That a true coordination between multiple devices never comes to pass. Vendors, initially, will build islands, closed IoT environments that only work with their products and those made by selected partners. Privacy protections may be treated loosely, with users forced to opt out if they don’t want their home turned into a giant spy cam for marketers.

We haven’t even mentioned things like Google Glass. Imagine a scenario where people agree to share live streams as part of a Neighborhood Block Watch. A surveillance state may arrive on a flood of good intentions. But the IoT has potential to make life more efficient, safer, healthier and environmentally friendly.

In particular, people who install solar energy systems and use net metering, essentially selling surplus energy back to the utility, will have powerful reasons to install aware and connected systems. But whether these systems can work together will depend on the willingness of vendors to make their products connectable. There is no vendor large enough to control the IoT, but there are vendors large enough to make a mess of it

Source : http://www.computerworld.in/feature/the-abcs-of-the-internet-of-things7

For experiencing IoT in real life please do reach us at http://www.recrosoft.com