Skip to main content

IoT connectivity





NB IoT

For applications that don’t move while in use and only require minimal bandwidth, NB IoT is a great option. It does not support full mobility (i.e. handoff between towers), but it does not need to, because assets are relatively stationary. Uses for NB IoT include street lighting, industrial monitors, parking and utility meters, heavy equipment tracking, and alarm panels.
It is important to note that while NB IoT may not be mobile, it is transportable. If an asset leveraging NB IoT technology changes locations, connectivity can be re-established with the nearest tower once stationary. Think of a moving company that provides containers as an option for transporting assets. They want to know whether or not the container has been dropped off at the customer’s location and when it has been picked up for delivery. NB IoT can pinpoint its resting location.
But what about its “in-transit” status once the pod is mobile? There is an LTE technology for that, too.

Cat-M

For uses that require a little more bandwidth, but do not require the advanced features of Cat-1, Cat-4, or Cat-6, there is Cat-M. Cat-M fully supports legacy IoT and M2M applications, offering four times the throughput with 50 percent of the battery life as NB IoT. Cat-M is a great option for mobile tracking use cases, such as fleet management, as it can jump from tower to tower without losing connectivity. It is also a great option for applications including building security and management, wearables, and remote patient monitoring.
Take the previous example: If the moving company needs to know if the containers have been dropped off or picked up as well as the in-transit status of the truck carrying the container in real time, then Cat-M would be a better solution.

Comments

Popular posts from this blog

hreflang? what is it? where does it come from?

Hreflang tags are a technical solution for sites that have similar content in multiple languages. The owner of a multilingual site wants search engines to send people to the content in their own language. Say a user is Dutch and the page that ranks is English, but there’s also a Dutch version. You would want Google to show the Dutch page in the search results for that Dutch user. This is the kind of problem hreflang was designed to solve. And for the  Webmasters who serve several versions of their content in different languages or for users in different countries should use   hreflang annotations   to help Google show the right version in the search results for each user. In this article, " How to implement hreflang tags... ", the author has lay out the steps from begin to finish on the right ways of implementing hreflang tags for your multilingual and multinational web sites. In another article, " hreflang: the ultimate guide ", the author has outlined the...

Javascript slider examples

JavaScript is a scripting language for the web. Microsoft refers to their implementation of it as "JScript" but in terms of syntax it's pretty much the same. jQuery is JavaScript. It is a JavaScript library, so it operates on top of JavaScript. It cannot exist on its own, so you can't use one over the other. You can use just JavaScript or JavaScript and jQuery. In other words, jQuery is a software library, written in JavaScript, whose intention is to help JavaScript developers when writing code that is to be run in a web page. jQuery is designed to make many JavaScript development tasks much easier. Use jQuery when it will significantly reduce your development time, and you can afford the extra overhead of downloading the library. Personally my reasons of using jQuery/JavaSccript libraries are: Complex element selection Animation Event handling crossbrowser support easy element selection customizable plugins large support community very popular jQ...