Join IoT Central | Join our LinkedIn Group | Post on IoT Central


industrial iot (23)

The head is surely the most complex group of organs in the human body, but also the most delicate. The assessment and prevention of risks in the workplace remains the first priority approach to avoid accidents or reduce the number of serious injuries to the head. This is why wearing a hard hat in an industrial working environment is often required by law and helps to avoid serious accidents.

This article will give you an overview of how to detect that the wearing of a helmet is well respected by all workers using a machine learning object detection model.

For this project, we have been using:

  • Edge Impulse Studi to acquire some custom data, visualize the data, train the machine learning model and validate the inference results.
  • Part of this public dataset from Roboflow, where the images containing the smallest bounding boxes has been removed.
  • Part of the Flicker-Faces-HQ (FFHQ) (under Creative Commons BY 2.0 license) to rebalance the classes in our dataset.
  • Google Colab to convert the Yolo v5 PyTorch format from the public dataset to Edge Impulse Ingestion format.
  • A Rasberry Pi, NVIDIA Jetson Nano or with any Intel-based Macbooks to deploy the inference model.

Before we get started, here are some insights of the benefits / drawbacks of using a public dataset versus collecting your own. 

Using a public dataset is a nice-to-have to start developing your application quickly, validate your idea and check the first results. But we often get disappointed with the results when testing on your own data and in real conditions. As such, for very specific applications, you might spend much more time trying to tweak an open dataset rather than collecting your own. Also, remember to always make sure that the license suits your needs when using a dataset you found online.

On the other hand, collecting your own dataset can take a lot of time, it is a repetitive task and most of the time annoying. But, it gives the possibility to collect data that will be as close as possible to your real life application, with the same lighting conditions, the same camera or the same angle for example. Therefore, your accuracy in your real conditions will be much higher. 

Using only custom data can indeed work well in your environment but it might not give the same accuracy in another environment, thus generalization is harder.

The dataset which has been used for this project is a mix of open data, supplemented by custom data.

First iteration, using only the public datasets

At first, we tried to train our model only using a small portion of this public dataset: 176 items in the training set and 57 items in the test set where we took only images containing a bounding box bigger than 130 pixels, we will see later why. 

Rav03Ny7X2bh1iOSftwHgggWj31SyQWk-sl_k4Uot4Jpw3eMg9XgYYrIyajogGfGOfL8j7qttiAWAcsABUgcoHUIg1QfYQRxeZfF_dnSFpsSiXhiIHduAZI9x6qcgikCcluR24r1

If you go through the public dataset, you can see that the entire dataset is strongly missing some “head” data samples. The dataset is therefore considered as imbalanced.

Several techniques exist to rebalance a dataset, here, we will add new images from Flicker-Faces-HQ (FFHQ). These images do not have bounding boxes but drawing them can be done easily in the Edge Impulse Studio. You can directly import them using the uploader portal. Once your data has been uploaded, just draw boxes around the heads and give it a label as below: 

AcihTfl2wibfy9LOzSUuPKEcF7IupGPOzPOmMmNi2LUq8sV7I2IVT5W4-7GGS8wJVD1o7VIQ5e7utCkQ1qT2xLawW7mQsTGL_WNuWIVIp5v89sCZt9gZ9fX7fwHo0PG9A3SDBCqV

Now that the dataset is more balanced, with both images and bounding boxes of hard hats and heads, we can create an impulse, which is a mix of digital signal processing (DSP) blocks and training blocks:

_qwt-WMdXI4Oc7BkNQfyEYZKV5MvziDkt1UUl1Hrx-65u_Uf-L_qEUmHMx_qN5Xh-r5vpn8JxCgpJvcT2v4-hWD9ZHE_wJjDgCCXZXxTkOtcTKSKGizDx9ZQO0KnBvvmaBCA1QvD

In this particular object detection use case, the DSP block will resize an image to fit the 320x320 pixels needed for the training block and extract meaningful features for the Neural Network. Although the extracted features don’t show a clear separation between the classes, we can start distinguishing some clusters:

zr70Lpe0Rg3wap9FWoGrco1pfT6L3TWUxYds3NhM_uHMhFDDr89KcLTH_OXIgKs6BrMdP7iihoz8t64Mk2JtbpTfmBAXyRYukNS9zxLk9zuGjZLqvakkgw6oOBuIhiVAzcMcZu9E

To train the model, we selected the Object Detection training block, which fine tunes a pre-trained object detection model on your data. It gives a good performance even with relatively small image datasets. This object detection learning block relies on MobileNetV2 SSD FPN-Lite 320x320.    

According to Daniel Situnayake, co-author of the TinyML book and founding TinyML engineer at Edge Impulse, this model “works much better for larger objects—if the object takes up more space in the frame it’s more likely to be correctly classified.” This has been one of the reason why we got rid of the images containing the smallest bounding boxes in our import script.

After training the model, we obtained a 61.6% accuracy on the training set and 57% accuracy on the testing set. You also might note a huge accuracy difference between the quantized version and the float32 version. However, during the linux deployment, the default model uses the unoptimized version. We will then focus on the float32 version only in this article.

fWwhQWxxLkAdnsFKuIUc2Lf2Lzji9m2uXux5cr3CmLf2cP8fiE_RQHaqJxekyBI3oIzOS81Jwoe6aBPfi1OFgEJSS3XQWnzR9nJ3eTY2M5JNVG38H3Dro2WZH3ltruXn_pUZkVvw

This accuracy is not satisfying, and it tends to have trouble detecting the right objects in real conditions:

hardhat_bad_82fbd9a22a.gif

Second iteration, adding custom data

On the second iteration of this project, we have gone through the process of collecting some of our own data. A very useful and handy way to collect some custom data is using our mobile phone. You can also perform this step with the same camera you will be using in your factory or your construction site, this will be even closer to the real condition and therefore work best with your use case. In our case, we have been using a white hard hat when collecting data. For example, if your company uses yellow ones, consider collecting your data with the same hard hats. 

Once the data has been acquired, go through the labeling process again and retrain your model. 

_f7J4zddenmarUiTf3VMyOz_kG70nieiEkSwR8kB3JhJE5K1IqCdttj4aOtrfzv4QYWXJ4Y9u_0MU1xKfFsU8hUB5gj00Y1E7oKlixjmhNB2p7VIqoamD9migXXPkAOrFRGVFfIo

We obtain a model that is slightly more accurate when looking at the training performances. However, in real conditions, the model works far better than the previous one.

NXnwDbkaWEia7qyM20U2kexTiWBSOXam_ACEGxzKCJ8kYtmxS7eCTMZsuwXJrjvkFUVb9YbSqwS7EOGiE4wu_FFGQ4YOufAB-JZA_uCOEoHO8D75ke6YU4H6QKnCBJyJA0hD4Lw3

Finally, to deploy your model on yourA Rasberry Pi, NVIDIA Jetson Nano or your Intel-based Macbook, just follow the instructions provided in the links. The command line interface `edge-impulse-linux-runner` will create a lightweight web interface where you can see the results.

hardhat_good_18d9e33d3a.gif

Note that the inference is run locally and you do not need any internet connection to detect your objects. Last but not least, the trained models and the inference SDK are open source. You can use it, modify it and integrate it to a broader application matching specifically to your needs such as stopping a machine when a head is detected for more than 10 seconds.

This project has been publicly released, feel free to have a look at it on Edge Impulse studio, clone the project and go through every steps to get a better understanding: https://studio.edgeimpulse.com/public/34898/latest

The essence of this use case is, Edge Impulse allows with very little effort to develop industry grade solutions in the health and safety context. Now this can be embedded in bigger industrial control and automation systems with a consistent and stringent focus on machine operations linked to H&S complaint measures. Pre-training models, which later can be easily retrained in the final industrial context as a step of “calibration,” makes this a customizable solution for your next project.

Originally posted on the Edge Impulse blog by Louis Moreau - User Success Engineer at Edge Impulse & Mihajlo Raljic - Sales EMEA at Edge Impulse

Read more…

Industrial IoT Revolution

Why the Nvidia Jetson Nano is responsible for the biggest industrial IoT revolution these days

 
c1f0a2_ecaa338269684f82b2661b550075f528~mv2.webp
 
 

It feels like yesterday when the Raspberry Pi foundation released the first-in-line Single Board Computer (SBC) to the market. Back in 2012, Raspberry Pi wasn't alone in the SBC growing market, however, it was the first to make a community-based product that brings the hardware and the software eco-system to a beautiful harmony on the internet. Before those days, embedded Linux based SBC's and SOM's were a place for Linux kernel and embedded hardware experts, no easy-to-use tools, ready Linux based distros, or most importantly without the enormous amount of questions and answers across the internet on anything related.

Today, 8 years later, the "2012 revolution" happens again

This time, it took a year to understand the impact of the new 'kid' in the market, but now, there are a few indications that defiantly build the route to a revolution.

The Raspberry Pi was the first to make embedded Linux easy while keeping the advantages of reliability and flexibility in terms of fitting to different kinds of industries applications. It's almost impossible to ignore the variety of industries where Raspberry Pi is in its hurt of products to save time-to-market and costs. The power of this magical board leans on the software side: The Raspberry Pi foundation and their community, worked hard across the years to improve and share their knowledge, but, at the same time, without notice or targeting, they brought the Pi development to an extremely "serverless" level.

The Nvidia Jetson Nano

Let's stop talking about the Raspberry Pi and focus on today's industry needs to understand better why the new kid in the town is here to change the market of IoT and smart products forever.

 
c1f0a2_2ca55bc3cd744a10a05bc244c4e092c1~mv2.webp
 
 Why do we need to thanks Nvidia and the Jetson Nano?
 

The market is going forward. AI, Robotics, amazing-looking screen app Gui's, image processing, and long data calculations are all become the new standard of smart edge products.

If a few years ago, you would only want to connect your product to the cloud and receive anything valuable, today, product managers and developers compete in a much tougher industry era. This time, the Raspberry Pi can't be the technology hero again, its resources are limited and the eco-system starts to squint to a better-fit solution.

 
c1f0a2_b46f958fa9b543af88a6ad38b2afce82~mv2.webp
 
 

NVIDIA Jetson devices in Upswift.io device management platform

The Jetson Nano is the first SBC to understood the necessary combination that will drive new products to use it. It's the first SBC designed in the mind of industrial powerful use cases, while not forgetting the prototyping stage and the harmony that gave the Raspberry Pi their success. It's the first solution to bring the whole package for developers and for hardware engineers with a "SaaS" feel: The OS is already perfect thanks to Ubuntu, there is plenty of software instructions by Nvidia and open-source ready-to-use tools custom made for the Jetson family, and for the hardware engineers: they are free to go with the System On Module (SOM) that is connected to a carrier board which includes all the necessary outputs and inputs to make the development stage even faster.

The Jetson Nano combination is basically providing the first world infrastructure for producing a "2020" product with complex software while working in a minimal budget and time-to-market. The Jetson Nano enables developers and product managers to imagine further without compromises, bringing tough software missions to the edge easily.

Originally posted here

Read more…

3561221589?profile=RESIZE_710x

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

The term Digital Transformation means different things for different people. Some people might think of it as switching from manual processes to autonomous processes, while for others it might be about the insights that the data brings, which can help in making business decisions. What can Digital Transformation or moving towards Industry 4.0 do for the manufacturing sector? It can lead to enhanced production cycles, increased customization, a focus on reinforced products and better access to information for employees.

Read more…

When you have the responsibility of ensuring a manufacturing plant is operating at its full potential at all times, talk of “Industry 4.0” and “industrial automation like never before” might be exciting but far-fetched. Industry 4.0 is just an empty phrase used by marketers who want to take your money, right?

Maybe in some cases, but the ideas behind the buzzy terms can actually give you an edge over competitors. Industry 4.0 is not a phase, but it’s also not an obligation that you need to “opt in to” 100% right away.  Industrial automation is a combined result of our greater digital capacities, smarter machines, and improved cross-channel communication that have accompanied the digital age.

In 2019, the technology is here: from decentralized cloud systemsto self-correcting and self-directing machines. However, it’s not everywhere yet, and most plants are simply taking baby steps towards preparing their lines to be as compatible as possible to these new technologies so that they can gradually work their way in. Industry is slowly moving towards a more optimized, efficient, automated structure, but this transition will be happening in the industrial world over the next few decades.

What do those “baby steps” look like? Where should begin to optimize lines in the most cost-effective, long-term ROI benefits?  We have compiled a list of 5 relatively simple ways you can take this year to set your plant up for new “Industry 4.0” industrial automation technologies:

1. Integrate a Single Virtual Server

Managing the IT aspect of your plant is difficult when you need to find cost-effective storage and data processing solutions for your company that also comply with all of the regulations and contingencies of your industry. However, upgrading a server to a virtual option is probably the most important upgrade you can do to get started on the road to future industrial automation applications that use a truly decentralized communication with virtual operating system.

If your plant currently runs exclusively on physical servers, you don’t need to go virtually all at once. The wonderful thing about industry 4.0 is that much of the software integrations available will integrate with your existing hardware. You can invest in one virtual server, and then layer software integrations on to it over time.

By starting with a single server, you can cut costs, maintain a realistic learning/adaptation curve, and try out a virtual server option without committing 100% to a change. There are numerous virtual server options available, so talk to a process automation expert about what server will work best for your plant, and which server to upgrade first.

2. Get Basic Industrial Automation Security – Two-Factor Authentication

With increased adaptability and communication on virtual servers comes increased cyber threats, and unfortunately, there is no way around this. One of the easiest and fastest upgrades you can do for your company is to implement two-factor authentication (2FA) for all employees. A simple password is no longer anywhere near secure enough to protect your employees and your data.

Luckily, everything from Twitter to Cloud servers now offer 2FA options, it’s usually just a question of getting the settings implemented correctly and creating a protocol that requires every employee to use 2FA at all times. It may seem tedious or frustrating at first, but this is a small habit that can make a huge difference in your cyber security and overall functioning of your plant.

3. Make Your Next Machine Purchase a Smart Machine

You probably aren’t yet at the point of having a completely automated assembly line of smart machines that create highly customized orders while communicating with and correcting each other (like the assembly line in this German plant.) However, smart machines do exist, and if you are getting ready to purchase a new machine, finding one that has automation, optimization, and decentralized communication abilities will be a great investment in your plant’s future.

Customizable “smart machines” are virtually independent of a human operator. The ability of these machines to adapt to the demands of individualized production requirements allows for scalable, lean production processes. In other words, with these new machines, you can produce a larger variety of products faster than ever before.

If your current machines are working fine, there is no need to replace them with smart machines right away. But from this point forward, it is a good idea to consider buying a smart machine for your next upgrade. Don’t be afraid to use an automation integrator to advise you on the appropriate machine, technology, and compatibility with existing plant automation systems.

4. Implement Technology Upgrades that Overlay or Automatically Integrate Existing Plant Industrial Automation

Be choosy about the automation products you decide to implement into your current systems moving forward. You want applications that both set your systems up for future technology integrations and help move you away from expiring legacy applications.

This shouldn’t mean replacing all your old applications, programming, and platforms all at once other. Most Industry 4.0 automation tools are created in an “overlay” style, meaning they are created to be able to function on top of your existing processes and are not supposed to disrupt everything you have already built.

Embracing a new software or system should never mean that you have to throw away your existing processes and start from scratch. If this is how you feel when you are getting ready to purchase a new software, machine, or server then it probably isn’t the right product for your company.

Talking to an expert about what products will work best with your current setup is a good idea before making any changes to your industrial automation. At my company, EPIC systems, we've seen the difference that selecting the right product solutions has made for hundreds of process automation projects — it's a key step for any manufacturing plant. No matter who you work with, you don't want to bypass this step.

5. Optimize One of Your Plant’s Processes

Divide and conquer, as they say. Just as it is best to upgrade one server at a time, it is helpful to focus specifically on one plant process at a time when you are looking to optimize and automate your plant.

This could mean focusing on optimizing your shipping procedure or optimizing one assembly process. The important thing to remember is that as you do this “experimental optimization” you are not just looking for an impressive return on investment, you are also looking to get your entire team comfortable with the automation and ready to embrace even more. This is why the “how” is just as important (if not more important) than the “what” when it comes to choosing a process to optimize. Go slow, be transparent, and include everyone in the process so that it is a success all around.

Industry 4.0 is creating a world where employees can delegate mundane tasks to smart machines and rely on highly communicative, agile systems in order to work faster and more effectively than ever before. There is no reason for any manufacturing plant to be left behind in this industrial evolution, with numerous products and services available to help walk you through the industrial automation process gradually and intelligently.

Read more…

Altering Cold Chain Logistics with IoT

Thought of opening your venture in the bakery and pastry sector but could not make it because of lack of proper storage at a particular temperature. If your company is leading company in the bakery and pastry sector and has various production and retail shop, a fleet of over 20 vehicles that perform around 40 deliveries every day then you have dabbled over the right partner.

Biz4intellia, an end-to-end Industrial IoT solution provides a cold chain monitoring and smart tracking system that works from storing the stuff at a proper temperature to reach the destination in peak condition. You need not to worry if you want to deliver your stuff in the morning and want to reach out your customer early at the point of sale. To control the temperature and make delivery more proficient, Biz4intellia has its own Smart Tracking solution which uses sensors and gateways.

The route optimization feature of Smart Tracking maps out the optimized routes for the fleet drivers so that the deliveries of cakes, pastries, and fresh bread products to the retail outlets can reach within the given time. With the sensor system, the temperature and location of each fleet can be known in real-time and hence alerts can be received through a smartphone/tablet/pc and basic internet connection.  

The below image tells about the present status of a particular vehicle like the temperature of the refrigerator, weight it is carrying, latitude, longitude, speed, and battery. Alerts are sent if a driver crosses the threshold of the speed or the refrigerator is not at a correct temperature.

650236501?profile=RESIZE_710x

Role of Sensor and wireless gateway:

During transportation of the food items, maintaining an optimal temperature was a critical task to prevent the costly spoilage. The Cold Chain Logistics solution provides a consistent and inexpensive way to ensure that your coolers and freezers are working properly, possibly saving thousands of dollars from unnecessary damage.  

Biz4intellia IoT solution eradicated all the challenges and developed the Cold Chain Monitoring solution consisting of a temperature sensor, 3G antenna, wireless gateway, GPS antenna, and a charger.

The temperature sensor used cost near about $49 with a frequency of 900MHz.To accurately measure the temperature, a thermistor is used. These small-sized sensors are perfect for monitoring ambient temperatures around the physical location of the sensors. Customized sensors allow the user to set the frequency of readings and the threshold value so that alerts via SMS or email can be sent. The sensor works accurately up to a temperature of +/-1 degree Celsius (1.8 degrees Fahrenheit) with the actual range varying according to the environment. With the sensor reporting frequency and other variables, you can also determine the battery life.

Out of the box features:

  1. Alerts if a door is left open:

During the course of taking the food from one place to another or during loading/unloading, if the door remains open then an alert is sent for the same. Also, if pilferage occurs during the same, notification via SMS or e-mail is sent.

 

  1. Geofencing:

The Geofencing feature captures the location of the vehicle with the coordinates of a particular area. Sends alerts when a driver deviates from the prescribed path as it can bring delay in delivery time and can cause accidental loss. 

 

  1. Reduce Spoilage and Waste:

If a temperature is not within the range then it spoils the food and hence it becomes a waste. Therefore, a real-time alert is sent if a cooler’s temperature is outside of its nominal range.  

 

  1. Save time and resources:

The automated system tracks temperatures so that a manual checking is not required. Hence it saves the time and resources to track the temperature and location of the vehicle.

  

  1. Predictive Maintenance:

Improved scheduled maintenance can be attained by the sensors and then the devices calculate the expected lifetime of machines well before their threshold comes.

 

  1. Maintain regulatory compliance:

Sensors help businesses to achieve regulatory compliance by giving 100% accurate data.

 

  1. Monitor from anywhere:

In a world of the digital era, accessing your smartphones/tablets/pc let you monitor the vehicle from anywhere around the globe.

 

How does it work?

The Biz4intellia solution monitors the temperature in the vehicle refrigeration chamber and sends the data to the gateway with the help of the 3G network. The real-time location of the vehicle is obtained with the help of the GPS antenna and is sent with the help of 3G network only. The battery has a capacity of 6600mAh and sends data even when the vehicle is off. In the absence of 3G coverage like in remote locations, data values are stored in memory and are then sent as soon as the vehicle comes in the coverage area.

 

Real-time data analysis-

 With the recent digital technologies, transmission of data has become very easy. Mobile technology enables the transmission of data which gets accessed by the gateway. Also, it tells about the temperature along with the position of the vehicle in real-time. The solution can be used for any transport or logistics company that needs instant temperature and position monitoring of the fleet. As cakes are one of the most delicate goods to be transported, tracking their real-time location and refrigerator temperature was always a necessity.   

 650230954?profile=RESIZE_710x

The cold chain logistics is a catalyst in the supply chain thereby supplying better nutrition and improving global food security. Temperature controlled logistics and monitoring system plays an important role in the modern day business. With the ever-increasing population residing in the present developing or emerging countries, there are huge business opportunities in emerging markets. Companies are taking advantage of these modern technologies thus providing more benefits to the people.  The reliability and the efficiency of the cold chain logistics solution have reached to a point where the food and beverage industry can make the best use of it.

As the technology made its footprints into the market companies as McDonald switched from frozen to fresh beef patties for its core burger product which could not have been possible without the coming up of the cold chain logistics.

Read more…

135463345?profile=RESIZE_710x

What is an Intelligent Transportation System (ITS)?

The European Telecommunication Standards Institute states that intelligent transport systems are those which include telematics and all types of communication between vehicles, in vehicles and between vehicles and fixed locations. Moreover, ITS is used not only in road transport but also in rail, water, and air transport. The Integrated System is quite capable enough of consuming a large amount of data and hence producing useful information to the traveler. This efficient information guides the traveler to reach their destination in the most optimized way.

Why a large amount of data is important?

We hear more often that people are getting fastly connected than ever because of accessibility to high-speed transportation and increased capability for sharing information, IoT in transportion is a fusion of this large amount of data which comes from multiple sources.

According to a study by McKinsey Global Institute recently it was stated that automotive industry will be the second largest producer of data in the forthcoming years and if we combine automotive with travel and logistics industry then the output for the same grow by an additional 30%.

How the data is fetched from sensors?

Sensors are highly important to get the raw data and if we consider the data of one sensor with another than we can get a deep understanding of the performance and behavior of the system. With the IoT in transportation, sensors and fetched data from them helps in detecting whether a wheel on the vehicle is slipping or not and accordingly alerts the driver or the concerned person to apply brakes. The data from these sensors help in the real-time analytics within the vehicle.

How this sensor system enables to take quick business decisions?

Data from various sources is collected and is integrated to reduce the uncertainty. Data collected from sensors is gathered and is analyzed further to have a deep insight such that it reduces the uncertainty for a particular situation. For example, the ambient air temperature being used alerts that the temperature is below freezing and the sensors used on the axle reports slippage then the situation come out to be that there is ice in that area. These alerts are sent by the cloud analytical system and (not sent manually) which warns the driver before entering a particular area.

Further, the cloud-based system sends this report to the operations center as well. This analysis report is further sent to nearby and surrounding systems which are outside the geo-fenced area. Alerts tell them about the detected ice region so that they can re-route if possible.  

 

The Industrial IoT and its myriad potential have changed the scenario of the Transportation industry. the system has enabled to make smarter and more informed decisions. The IoT technologies need to be embraced to cope up with the competition. As the industry was in continuous suffering from heavy operational costs, the implementation of Internet of Things has made safe and cost-efficient business operations. On leveraging IoT, the connectivity and capability for predictive analytics has streamlined the processes and hence has enhanced their bottom line.

Read more…

It is still the early days for autonomous trucks, and a report by Gartner estimates that by 2021, less than 1% of long-haul, over-the-road freight will be carried by driverless trucks.

109152869?profile=original

The trucking business already leverages the advantages of using mobile technologies, but the volatile nature of rising labor rates, fuel costs, increased traffic, and a changing regulatory environment, continuously making operations challenging.

Inefficiencies caused by lack of visibility create considerable costs. However, with the help of disruptive technology such as the Internet of Things (IoT), visibility into equipment, assets, personnel, and transactions, enterprises can better support crucial operations in real-time and improve operational efficiency and performance.

By leveraging enterprise IoT asset intelligence, the trucking can tackle problems with solutions powered by IoT. 

Problem # 1: The traditional transportation model lacks the operational efficiency of the trucks.

The Solution: IoT in transportation has empowered trucking business owners to improve the operational efficiency of trucks by real-time monitoring and tracking of the fleets. With real-time monitoring capability, decision-makers can make out-of-the-box business decisions. Whenever there is an engine oil leakage, an alert is sent well before time indicating about the threshold it has reached, that’s how the internet of things makes a difference in the trucking business.

 

Problem # 2: The consumption of fuel was increasing and congestion problems start arising. 

The Solution: Usually, the traditional transportation business models consumed energy affluently due to improper route management, so an optimized route management was crucial to building a sustainable trucking business. With the help of real-time field data, efficient fleet route management eliminated almost 175 grams of carbon emission, produced by every extra mile traveled by any vehicle. With the manual monitoring getting expensive and inaccessible, the IoT enabled heat and motion sensors to utilize the energy resources more smartly, which provides huge value to the administrators. 

 

Problem # 3: Tracking of public transport became a serious issue.

The Solution: Managing the traveling from one point to other was possible by the traditional public transport but not the tracking real-time location of the vehicle and knowing when it will arrive at a particular stop. With the help of real-time sensor data, selecting the optimal route based on real-time conditions got easy, resulting in better public transit management. The IoT sensors tell where the traffic is jammed up and reduces the congestion and find an alternate route became easy which consumed the energy and time. IoT sensors tell where the traffic is jammed and convey the alert to the fleet and find an alternate optimized route to save time and energy.

 

Problem # 4: Increase in operational cost and damage to the infrastructure.

The Solution: From the traditional transportation model, loading the exact amount of load in the trailers was near to impossible. So, a proper check on the vehicles like size, weight, and type of vehicles is done and the load in the trailer is measured in real-time using weight sensors. Through IoT and smart devices, the overloaded vehicles can be identified and can be partially unloaded to evade fines. From the real-time tracking, alerts are sent well before time so that an optimized efficiency can be achieved.

 

Problem # 5: No advance alerts and availability of parking slots.

The Solution: The integrated smart transportation system tells the real-time information of the driver as well as the vehicle and warns them about the potential engine outbreaks. IoT in transportation can also ensure the smart parking, which tells about the lots that are presently available in real-time. Also, the multi-level parking system helps in reducing the operating and maintenance expenses. IoT sensors help in increasing the safety, comfort, and efficiency in driving and parking.

 

CONCLUSION:

Over several recent years, the Internet of Things has unlocked a box of new opportunities in the trucking industry and has undoubtedly advanced beyond recognition. IoT is all about digitally connecting devices and analyzing the data to predict future outcomes or possibilities and the transportation industry is at a point where it can leverage the full potential of this disruptive technology.

Read more…

As the Global PM and CTO for Lumada, it's been a rewarding journey to create a portable Industrial #IoT platform that could run at the Edge on a factory floor, in a train, inside a data center or in any hyper-scale public cloud.

This composable platform (use just what you need for your specific use case) combined with our revolutionary Asset Avatars (Digital Twins) that bring Lumada to life, is the very definition of "Visionary." I also want to send a big congratulations to our Visionary friends at PTC (ThingWorx) and SAP (Leonardo).

Our #Lumada #IIoT platform coupled w/ our IoT Hardware Appliance takes you from #Edge to #Cloud.

Thanks to all the Hitachi collaborators, colleagues and friends I was lucky enough to take this journey with.

Get a free copy of the Gartner report here:
https://www.hitachivantara.com/ext/gartner-magic-quadrant-for-industrial-iot.html

-Rob

Read more…

 

The Internet of Things (IoT) enables vendors to create an entirely new line of “smart” solutions for its existing and new markets. While the decision to go “smart” is straightforward, the decision of how to do so is not. Vendors are faced with a “build, buy, partner” decision – build it themselves, buy or license it from someone, or partner with a complementary solution provider and go to market together. This article discusses some of the key considerations product managers and executives must study in order to make the most appropriate decision.

 

“Build, buy, partner” is a strategic decision

For many vendors, IoT means adding a technology layer to products that never had any before. Even for tech savvy vendors, IoT presents a whole new set of technologies that they are less familiar with. Equally important, IoT is not just technology, but includes data, security, user experience, and business/business model elements. Figure One shows an IoT product management framework developed by Daniel Elizalde of TechProductManagement. A company going “smart” has a lot of decisions to make, of which technology is just one component.

Figure One. IoT Product Management Stack.

The framework shows that the “build, buy, partner” decision is multi-dimensional. There are six decision areas, spread across components from the edge to the user applications. Each represents a different “build, buy, partner” decision point, and each takes the company down a different path. In today’s fragmented and dynamic IoT ecosystem, many companies will need to “build, buy, partner” simultaneously. For example, cybersecurity is a specialized field that many vendors cannot address on their own, and must buy or license for their solution. The actual proportion of “build, buy, partner” each vendor does varies based on their specific situations.

Build

The company creates the solution themselves with the resources they own, control or contract to. Companies who choose this option, but have limited internal expertise may contract with Original Design Manufacturers (ODM). These ODMs provide a portfolio of services, from design, prototyping, test, certification, to manufacturing.

The “Build” option enables full management oversight of the development process, the solution functionality and the intellectual property. Conversely, this option may result in a longer time to market, and require additional capital and resources beyond what is scoped.

Companies consider this approach when:

  • They have the requisite skill sets and resources to do it
  • They can do it faster, cheaper and at lower risk
  • This is a strategic competence they own or want to own
  • There is strategic knowledge or critical intellectual property to protect
  • They are fully committed throughout the company

Buy

The company procures all or part of the solution components from a 3rd party. This includes licensing technology and services. Companies may also acquire technology through mergers and acquisitions, as well as buying the rights to technology from companies willing to part with it. This option eliminates “reinventing the wheel”, enables faster time to market, maximizes resource efficiency with limited execution risk. One common variant of this approach is to buy technology platform from a vendor, and then build their specific solution components on top of that. 

The downsides of the “Buy” option include a loss of control in the development process, and limited agility to respond in a timely manner to changes in the market and customer needs.

Companies consider this approach when:

  • They don’t have the skills or resources to build, maintain and support it
  • There is some or all of a solution in the marketplace and no need to “reinvent the wheel”
  • Someone can do it faster, better and cheaper than they can
  • They want to focus their limited resources in other areas that make more sense
  • Time is critical and they want to get to market faster
  • There is a solution in the market place that gives you mostly what you want.

Partner

The company allies itself with a complementary solution or service provider to integrate and offer a joint solution. This option enables both companies to enter a market neither can alone, access to specialized knowledge neither has, and a faster time to market. This option adds additional management and solution integration complexity. For some companies, reliance on partners for some aspects of the solution may be uncomfortable due to a limited loss of control.

Companies consider this approach when:

  • Neither party has the full offering to get to market on their own.
  • Each party brings specialized knowledge or capabilities, including technology, market access, and credibility.
  • It lowers the cost, time and risk to pursue new opportunities

 

Management considerations for “build, buy, partner”

Before the company chooses a path to go “smart”, executives and managers must base their decision along three “build, buy, partner” dimensions – execution, strategy, and transformation.

Execution

The first dimension focuses on the company’s ability to execute successfully. Managers must audit and assess their capabilities and resources to answer the following questions:

  • Do I have the necessary skills in-house to successfully develop, test, support and operate an IoT enabled “smart” solution and business (Figure One)?
  • Do I have the right human, capital, financial, and management resources to do this? Is this the best use of my resources relative to other initiatives and projects?
  • What am I willing to commit, sacrifice and re-prioritize to see this through? Am I willing to redeploy top management and company resources? How long am I willing to do this?
  • How much budget and resources am I willing to commit?
  • Is there anyone that can do it better than me? Does it make sense for me to do it? What am I willing to do and not do?
  • What infrastructure (processes, policies, systems) do I have, or need to build, maintain, support and operate these new solutions?

Strategy

The second dimension relates to the company’s current and future strategic needs. These are company specific as it relates to its current situation, its customer and channel, and its position within the industry. Key considerations to be addressed include:

  • How does going “smart” align with the company’s vision and strategy? Which parts align and which doesn’t? Does the vision and strategy need to be updated to reflect the realities of going “smart”?
  • How important is time to market? Do I need or want to be a first mover? How long will it take to execute with the resources that I have?
  • Am I trying to reach existing or new markets with IoT? Do I understand their needs well enough that I can execute on meeting it?
  • Do I have any critical proprietary technology, processes, and other intellectual property that I need to protect?
  • What are the risks? How much risk am I willing to tolerate? What are the costs of those risks? How much risk can I mitigate with my current capabilities?
  • How much control do I want or need to go “smart”? What areas do I want to control myself and how? Can I afford to control those areas?
  • What is your real value to customers and your channel? Why do they buy from you, and why do they come back? What do you do well?

Transformation

The third dimension is the company’s ability to manage transformation. Going “smart” doesn’t stop with the IoT technology. The entire organization, its operations, policies, systems and business models must transform to support and operate the “smart” business. Furthermore, resellers and service channels, and suppliers and partners, are also impacted.

  • What is your corporate culture and how well does it support change? Do you have the right people to manage and sustain this change? Are you nimble and agile?
  • What degree of disruption will there be to internal processes, channels, organization readiness, and business models? How agile are your current capabilities?
  • How prepared are you to operate a “smart” business? Do you have the skills and infrastructure required? Can you support a recurring revenue business model? How willing are you to invest in order to develop and sustain these capabilities?

 

What should you do next?

Each company is unique, and its situation will dictate its response to these dimensions. There is no one “right” universal answer to the “build, buy, partner” decision. Equally important, what’s right today, may not be right tomorrow. Companies that want to go “smart” start by looking inward first and doing the following:

  • Establish a current baseline. Audit and catalog current and planned offerings, strategy, human resources and skill sets, channel and suppliers, internal operations and policies, and culture.
  • Evaluate the IoT product management stack (Figure One) against your baseline using the three “smart” dimensions. The list of questions listed are starter questions, but answering those will lead to more questions to be addressed.
  • Evaluate and assess your company’s future state capabilities against the baseline using the three “smart” dimensions. Understand where the gaps are, and the extent of those gaps.
  • Identify your risk tolerance level. Going “smart” is not without risk, especially if you have never done it before. The key is to identify what and how much risk you are willing to take. Once you do so, you can develop a risk management plan and incorporate the appropriate tactics to manage it.
  • Update your business vision and strategy as applicable.
  • Develop your “build, buy, partner” decision and strategy. This strategy must align to the broader business vision and strategy.

 

About:

Benson Chan is an innovation catalyst at Strategy of Things, helping companies transform the Internet of Things into the Innovation of Things through its innovation laboratory, research analyst, consulting and acceleration (execution) services. He has over 25 years of scaling innovative businesses and bringing innovations to market for Fortune 500 and start-up companies. Benson shares his deep experiences in strategy, business development, marketing, product management, engineering and operations management to help IoTCentral readers address strategic and practical IoT issues.

Read more…

5 IIoT Use Cases from Global Leaders

“I talk to a dozen or more companies involved in IoT every week. One thing they all have in common is their desire for the projected IoT volumes and revenues to come to fruition...the sooner the better”.

Mike Krell

Analyst at Moor Insights & Strategy covering the Internet of Things, Forbes.

 

Internet of things has always been functioning in a context of business transformation.

If you’re in business, just read on, as we are to have several working IIoT solutions to consider right now.

 

To be successful today you need to:

  1. really love what you do;
  2. move with the times;
  3. make the IIoT technology a part of your business development plan;
  4. and find an Industrial IoT company for you to cooperate with.

Here I gathered 5 IIoT solutions implemented by global industry leaders and the key examples of their efficient cooperation with IoT developers:

 

#1 Predictive Maintenance for Wind Energy

 

The IIoT solution is projected to be implemented into the maintenance of wind energy. The smart wind turbines will be applied to reveal how employees can get additional insights by using ML about the equipment performance in different conditions. Thus, smart sensors are supposed to give the information in a real-life regime.

The system can give reliable statistics for the future planning and help to replace vital parts of the engines during the less windy periods:

Source: Schaeffler Group & IBM

 

#2 Health Detectors for Caterpillar Equipments

 

Recently, the American machinery and equipment giant, Caterpillar implemented a new IIoT solution to help its customers better understand the workability and health of the equipment. It should also be said that the company uses IoT solutions for tracking fuel efficiency, idle times, location, and many more. The new project lets clients directly address the company maintenance service and timely repair the sensitive spots by using the IoT platform.

The end-to-end platform for predictive diagnostics allows for better monitoring and timely replacement of the interchangeable parts. The Caterpillar CEO, Doug Oberhelman supposes the IIoT, which is primarily applied to the fleet and fuel monitoring, will take the clients offering to the next level.

 

#3 Airbus Smart Manufacturing

 

You know the biggest European aircraft manufacturer has already applied the IoT solutions to its products. Today Airbus is working at implementing the IIoT to the tools its workers use during the manufacturing process.

For this reason, Airbus opts to involve its employees and the factory floor. The workers will manage to use smart tablets or glasses to evaluate a task and then send the data to a robotic tool that will finish it.

Jean-Bernard Henz, the head of PLM R&T Innovation at Airbus ICT, says the IoT platform manufacturing will speed up the processes and improve the reliability of the production.

 

#4 Siemens -- a 75% automated plant

 

You know the Siemens AG plant is a part of a concerted effort by the German government to develop fully automated factories. Guess what? Siemens is claimed to be 75% automated with 1,150+ employees on board.

All the employees are mainly operating computers and monitoring the process of manufacturing by using the IIoT solutions. Sinalytics, which is a critical component of the IIoT Platform was implemented in 2015. Today Siemens continues developing the Web of System, which directly connects devices to the open Internet and with each other. Besides, Siemens launched a new company in 2016 that is named Innovations AG. The company is dedicated to the search and support of the emerging start-ups that can be a good technological investment for Siemens. This has influenced the factory efficiency, opened the new technological opportunities and reduced costs.

https://twitter.com/Siemens/status/935795639472021506

 

#5 ThyssenKrupp Elevates IIoT Implementation

 

The CGI global tech firm claims ‘that thing is an elevator’ for the company. Well, let’s see it. Having joined forces with Microsoft and CGI, the ThyssenKrupp Elevator company has now obtained a predictive maintenance for elevators manufacturing.

The IIoT solution securely connects tens of thousands of sensors and elevators systems across the plant. The technology allows for monitoring every stage of production starting from motor temperature and finishing with shaft alignment. The real-life IIoT gathered data lets the company identify vulnerabilities and repair them before an actual breakdown occurs:

https://twitter.com/thyssenkrupp_en/status/964787252629946368

 

What’s the bottom line?

IIoT solutions undoubtedly contribute to production efficiency. The predictive maintenance and pre-emptive repair, manufacturing automation and further spending cuts are just a tiny bit of what I recorded here.

I am almost done here...

Feel like you have something to tell about your IIoT use case?

Drop me a line below!

Read more…

IIoT protocols for the beginners

We all know HTTP (hypertext transfer protocol). These are the first 4 alphabets which see on any URL of a website you open in your browser. In simple terms, it is a list of rules that define do’s and don’ts of communication between web browser and web server. It is like you (web browser) going to ATM (webserver) to get some cash (request). Here the HTTP will describe the complete procedure – enter pin, amount, etc. You get your cash (result) once you follow the mentioned steps. Quite simple.

The World Wide Web (WWW) works on HTTP as it is the only protocol used there for the data transfer. However, this is not the case in the Industrial (I) IoT world. Here we have a bunch of protocols to choose depending on the type of application or so-called “use case”. The most common among them are MQTT, CoAP and of course HTTP. Before we discuss them, let us first have a look at certain networking terminologies and definitions.

Source: Pixabay

Transport layer protocols (TCP, UDP)

Transport layer protocol, as the name implies, is responsible for transportation of message or information from one computer to another. The transport of the information can be done in two ways:

  1. Connectionless protocol (UDP): This kind of protocol is preferred in cases where speed and efficiency are more important than the reliability. In this case the data is sent without establishing or waiting for a connection. This means that a bit or segment of data can get lost during transportation. A typical example of such protocol is live video streaming where sometimes bad connection results in the fragmented video. For example, imagine yourself bringing a bunch of letters to the postbox and dropping them inside. You are just dropping the letters inside the box without knowing whether they will be delivered to their recipients. This is the case with connectionless protocols. On the other hand, bringing all these letters to the post office and ordering a return receipt for them, thus ensuring their delivery, can be compared to a connection-oriented protocol.
  1. Connection-oriented protocol (TCP): Here the protocol ensures the receipt of a message at the other end without any data loss on the way, thus ensuring a reliable transport. The connection-oriented protocol needs extra overhead (discussed later) as compared to the connectionless protocol. Just like, it takes extra resources (time, money) to order a registered letter with return receipt.

Packet and Packet size 

packet contains data (payload) along with information (header) like source, destination, size etc. Just like a DHL packet that contains stuff to be shipped along with information like address, weight, dimension etc. packet size in networking, is the amount of data (in bytes) carried over the transport layer protocols.

Overhead

It is the extra information (in bytes) or features associated with the packet which ensures the reliable delivery of the data. In other terms, it is that bubble wrap foil around your shipment that is not necessarily needed but provides an extra layer of safety and reliability for a safe shipment of your parcel.

The amount of overhead associated with the packet depends on the type of transport protocol used. UDP in comparison to TCP has smaller overhead.

Bandwidth

Bandwidth is the rate (bits/MB/GB per seconds) at which the data transfer takes place. The larger the bandwidth, the more data can be transferred at a given time.

So that was a crash course on networking. Now let us try to understand the mentioned IIoT protocols using these terminologies.

Message Queue Telemetry Transport or simply MQTT is a lightweight messaging protocol for industrial and mobile applications. It is best suited for application where network bandwidth and power usage are limited, for example, small sensor, remote location applications, machine to machine communication. MQTT communicates with a server over TCP and unlike HTTP works on publish subscriber model (see figure below).

 

Fig. Example of a publish subscriber model used in MQTT

In order to understand the concept behind the MQTT, one should try to understand the underlying architecture “The publish-subscriber model”. Here a client publishes a message or a topic (temperature, humidity) to a broker that in turn sends these topics out to clients interested in subscribing to that message.

 

The publish subscriber model used in MQTT offers a couple of advantages as compared to the standard client-server model used in HTTP. Multicast, scalability and low power consumption are among the top three. These advantages are due to the fact that the publish-subscriber model overcomes some of the structural (one to one communication, tight coupling, fault sensitive) drawbacks of the traditional client-server model.

Let’s have a look at an analogy in order to understand the difference. Let us assume that MQTT and HTTP are two publishing companies: MQTT publishes magazines on various topics (sports, politics, cars, etc.) and provides them to a broker who in turn distributes them to subscribers interested in one or more topics. This way MQTT can cater many (multicast) subscribers at a given time, thus it is scalable. Since he only has to deal with a broker whom he contacts once a day, his investment (power consumption) in maintaining the business is not high.

 

HTTP, another publisher, likes to deal with one customer at a time. He highly relies on his customer and on his value chain (server to server). This, however, comes at a cost of relatively high business investment (power consumption) since he has to visit his customer each time for a handshake.

 

MQTT in contrast to HTTP is best suited for an application where bandwidth, packet size and power are at a premium. An industry generator with battery-powered temperature and humidity sensor cannot afford to maintain a connection with server each time it has to push the measured values (event or message) into the cloud. MQTT is just designed to overcome such constraints where the connection is maintained by using a very little power and the commands and events can be received with as little as 2 bytes of overhead (extra resources needed for operation).

 

Constrained Application Protocol or simply CoAP, is a UDP based protocol, which is mostly interpreted as a light version of HTTP (except the fact that HTTP works over TCP). It is specially designed to work in a constrained environment with limited bandwidth and power constraints, where communication has to be fast and ongoing. Unlike HTTP, CoAP can support one to many (multicast) requirements and is faster than other TCP based protocols which makes it a good choice for M2M.

 

It is quite common to see the device to device (D2D) or device to gateway (D2G) communication done over CoAP and the communication between gateway and cloud is HTTP job. This is due to the fact that there is a well-defined mapping between these two protocols.

So, if both MQTT and CoAP are good for the constrained environment, then what makes one better than another? The answer lies in the underlying transport layer their use. MQTT is better suited for event-based communication in a constrained environment where data needs to be sent in batches (for instance temperature and humidity values) and at regular intervals over a reliable channel.

CoAP is a better choice for continuous conditioning monitoring scenario in a constrained environment. Since it runs over UDP, CoAP offers faster communication among the devices which makes it a better option for M2M/D2D/D2G communication. CoAP is also best suited for web-based IIoT application where it has to work along with HTTP. In such a setup, you have CoAP at sensor side and HTTP running between proxy/gateway and cloud.

What about HTTP? It is on demand whenever you want to push a big chunk of data from gateway/industry modem/computer into the cloud or a web-based application without compromising on security. Here regardless of how data is collected and sent to a gateway (CoAP vs MQTT) if it comes to reliable big package delivery, then HTTP takes the front seat. Moreover, HTTP is still used as a standard protocol for devices who do not support any other protocols.

MQTT or CoAP or HTTP, it is a matter of speed vs reliability vs security, whichever suits your use case the best.

I hope you enjoyed reading the article and that it helped you to get at least a basic understanding of the major IIoT protocols. Your feedback, comments or suggestions are always welcome.

Read more…

Rise of the Intelligent Revenue Machines

An early theme of digital transformation was the notion of selling services rather than products. A contract with the “thing maker” to circulate cooling fluid throughout my factory rather than a purchase order for me to buy the pumps and filters needed to do it myself, for example. The contract lets me focus on creating products for my customers rather than maintaining the machines making this possible. I don’t want to spend time on the process (pumps and filters), I just need the outcome (properly cooled machines) in the least distracting way possible to my core business of producing goods, medicine, energy, etc. The contract lets you, purveyor of the connected pumps and filters, build a closer relationship with me, streamline your business, and avoid competing in an increasingly commoditized space.

The fundamental shift happening today goes beyond providing guaranteed services rather than just hardware. Ensuring my lights stay on rather than selling me light bulbs solved your commodity hardware problem, but over time service offerings will face similar pressure as your competitors follow your connected product path and undergo digital transformations of their own. Your long term return on investment in IoT depends on more than keeping my lights on and water flowing. The value your IoT system creates for you depends on your IoT system’s ability to generate more business for me. There’s no such thing as a cheaper “good enough” replacement part when it comes to generating new revenue.

In healthcare for example, when your IoT system enables me to perform procedures in 24% less time, my clinics can perform 24% more procedures each day, increasing my revenue by 24% and delivering a 24% better patient experience. That’s what I’m looking for when I’m buying medical equipment. Depending on my corporate agility, the adoption and rollout of your connected machines may be a phased approach, following a progression of business outcomes. Asset Management means knowing the status of each device at all times and controlling them accordingly. This first step helps me see the potential value of incoming data and better understand my current utilization. Workflow Integration is connecting this information with my enterprise systems, which enables Predictive Maintenance and automatically alerts service technicians when a machine shows signs of impending failure. Where everything comes together and bonds me securely to your connected product service is Yield Optimization.

At this point your IoT system is collecting data from machines in my facilities as well as external data like weather and information from my other enterprise systems, correlating this information and uncovering patterns and ways for me to achieve more with less. Your “things” are now more than hardware installed in my facility performing physical tasks. They’re active components in a new System of Intelligence engaged in a loop of continuous learning and improvement.

This is true digital transformation, the creation of business value out of data collected and processed by your IoT solution.

Read more…

To paraphrase Geoffrey Moore, smart “thing makers” are investing in IoT solutions for their customers today in order to generate more revenue for themselves tomorrow. Traditional hardware vendors are being commoditized and replaced whenever a cheaper “good enough” option comes along. To thrive in the long run, your value must be “sticky”, embedded in your customer’s business, providing benefit to their customers as well. The “things” you sell now simply enable your customers to run their basic operations. Whenever a part breaks, customers make a decision to order a new one either from you or a competitor. How differentiated is your equipment from the rest of the market? Your business is constantly at risk.

What we’re seeing as a result are “thing makers” creating smart systems that empower their customers to not just operate, but to *optimize* their operations. These devices still perform their physical functions as before, but also collect and share a stream of data about their status and conditions in the world around them. It’s the data they produce, and the insights your system derives from this data, that enable your organization to offer far more valuable products and services to your customers that are not so easily replaced.

If you know the state of your machines at all times, you can build predictive maintenance and service models enabling guaranteed uptime and automatic replenishment. If your equipment never breaks or runs empty, your customer is unlikely to replace it with a competitor’s version.

If your products provide not just lighting and temperature control but also insights correlating usage patterns with time, weather, and utility data that reduce your customer’s costs, you can sell them this information for a percentage of these savings.

It’s the future. Your connected product system is part of your customer’s operating procedures, continuously generating insights for maximizing productivity. Improved asset utilization, faster turnarounds, synchronized workflows, and more. Smoother operations and reliable performance deliver better experiences for their customers, further expanding your customer’s business, because of your IoT solution. You don’t just sell “things.” You sell outcomes, which is what your customers really wanted in the first place.

That’s pretty smart.

Read more…

There is an ongoing transition from a world where having an internet connection was sufficient, to a world where ubiquitous connectivity is quickly becoming the norm. The ability to gather and transport data at high speeds from anywhere is leading to increased automation, smart-everything (vehicles, homes, appliances – you name it), and a standardization of languages and protocols that make the possibilities nearly endless.

Recently, IEEE and Eclipse Foundation completed surveys that provided a snapshot on tools, platforms and solutions being used by engineers and programmers alike to build the Internet of Things. According to Joe McKendrick for RTInsights.com, there were several notable conclusions to be drawn from the results, including the revelation that, of the 713 tech professionals surveyed, nearly 42 percent said their companies currently deploy an IoT solution, and 32 percent said they will be deploying/working with an IoT solution over the next 18 months. Additionally, RT Insights writes:

“In terms of areas of concentration, 42% report they are working with IoT-ready middleware, while 41% are concentrating on home automation solutions. Another 36% are working with industrial automation as part of their IoT efforts. One-third are working on IoT for smart cities, and the same number are building smart energy solutions.”

An interesting note from those conclusions is that 36 percent are working with industrial automation as part of their IoT efforts. Earlier this year, we predicted that Industrial IoT (IIoT) app development would outpace consumer IoT apps, and although this sample size is somewhat limited, it still bodes well for the development of the IIoT sector that is just starting to come into its own.

Among IoT developers, there has been a bit of debate over the programming languages that best suit IoT apps. There are situationally appropriate uses for the main languages, but currently, the majority of developers prefer Java and the C language. For developers, being able to build out IoT apps that can work across platforms is a giant step toward standardization. Specifically, in the Industrial IoT, being able to build apps that can function at the Edge to enable smart data collection is a becoming an unofficial mandate for any companies hoping to transition legacy OT operations into the IT/OT convergence movement taking place across critical industries.

Of course, building apps is a meaningless task if the hardware being deployed can’t host those apps, a finding that was demonstrated by the survey:

Hardware associated with IoT implementations include sensors, used at 87% of sites, along with actuators (51%), gateways and hub devices (50%), and edge node devices (36%).

This Edge functionality and sensor deployment are two pieces that are driving the adaption of IoT technology across industries that have traditionally relied on data as the main tool for decision making. However, with smarter hardware, these industries now have the opportunity to improve the efficiency of that decision making – a transformative capability in the industrial realm.

Join FreeWave’s ZumLink IPR Pilot Program!

IIoT App Development with Java, Python and C++ languagesWhat if you could…..

  • Collect, analyze and react to data in real-time at the sensor edge?
  • Reduce BIG DATA that clogs data pipelines?
  • Minimize the cost of expensive PLCs?
  • Control your sensor at the closest touchpoint?

The ZumLink IPR App Server Radio combines 900 MHz wireless telemetry with the ability to program and host 3rd party Apps for intelligent control and automation of remote sensors and devices. To participate in the pilot program, visit: http://www.freewave.com/zumlink-ipr-pilot-program/.

Pilot Program participants:

  • Receive a complimentary hardware/software Dev Kit
  • Get support from FreeWave software engineers
  • Should have App developer’s skills

Let’s discuss:

  • Use cases that would help you or your organization solve a problem
  • Problems you would like to solve
  • Developers that could build this App
Read more…

What are common features of IIoT and SCADA/HMI and differences between them? And what advantages do Internet of Things Platforms have over SCADA systems? Find out answers in our new presentation.

Read more…

We've updated our IoT platform presentation to tell you more about it, derived products and solutions.

Pleasant viewing!

                           

Read more…

Our software offers fully functional monitoring solutions for healthcare organizations. Fast deployment, easy integration, and great usability guarantee quick troubleshooting to your healthcare IT teams.

AggreGate IoT Platform enables centralized monitoring and data aggregation for various wearable medical devices and mobile e-health applications. Intelligent Big Data processing algorithms allow detecting negative trends proactively, providing a strong foundation for building customized predictive medicine solutions.

In addition, choosing AggreGate solutions for your medical infrastructure monitoring, you get all types of industry-specific management.

Find out what AggreGate can offer for your health, medical devices, and facilities in IoT Solutions for Healthcare and Social Institutions website section.

Read more…

Tibbo announced the release 5.4 of AggreGate IoT Integration Platform.

We've achieved great results in optimizing AggreGate server performance, especially event and value update storage performance. From now on, a single server can process and persistently store up to a hundred thousand events/updates per second, which is almost equal to 10 billion events per day. Such performance figures don't even require any high-end server hardware.

A new chapter has been opened by this release, presenting AggreGate's graphical and textual programming languages inspired by IEC 61131-3 standard, also known as "SoftPLC". Millions of engineers are now able to use AggreGate as a process control logic development environment.

One innovative feature of AggreGate's automation languages is tight integration of runtime with the Tibbo Project System hardware. Your programmed logic can access and control all Tibbit modules of a Linux-based TPS board/box. Currently available languages are: Function Block Diagram (graphical), Structured Text (graphical), Sequential Function Chart (textual).

Widget capabilities are no longer limited by the standard set of components. Now it can be easily extended. New Widget Component SDK allows to implement custom visual components in Java and use them in AggreGate widgets. Extend AggreGate's wide component palette with UI controls best suited to your needs!

We continue making our UI interface clearer and more user-friendly. The next step is lightweight icons. We redesigned them to be up-to-date with modern flat paradigm. New color coding assists users to navigate over various available toolbar actions.

Other major improvements include:

  • Built-in timestamps and quality for data tables.
  • Component connectors that allow to visually link UI components with each other.
  • Secure and reliable Agent communications. Agent-Server communications now can be SSL-protected. When transferred data amount is critical, data compression can be enabled in parallel to encryption.
  • Granulation, a brand-new highly customizable data aggregation and consolidation tool. The granulation engine allows to combine datasets into compact representation that contains all important aspects of original information in virtually any form suitable for later processing. This allows to reduce memory and storage consumption along with boosting data processing performance.
  • Server remote upgrading. To reduce company's expenses, a remote AggreGate server upgrade operation is now supported. You can use our Unified Console application to connect to a remote server, upload a server upgrade bundle file and wait while the upgrade process is finished. That's it! All operations, including database backup, stopping server, upgrading and restarting will be performed at the server side automatically.

We are bringing our IT & Network Management solution (AggreGate Network Manager) to a new level by turning it into a full-fledged IT Service Management System. In this release, we introduce several essential instruments for that: Configuration Management Database (CMDB), metrics engine and topology-based root-cause analysis tools. Another ITSM functionality - IP address management module - is now available and you can use it out-of-the-box.

AggreGate 5.4 includes new device drivers: CoAP, MQTT, IEC 104, DLMS/COSEM, SMI-S.

You can get detailed information on the new 5.4 release, download and try the updated AggreGate IoT Platform on our website: http://aggregate.tibbo.com/news/release-54.html

Read more…

Top 5 Industrial IoT use cases

The industrial IoT has already proven its versatility with deployments going live in a number of enterprises, showing off dozens of different use cases. But a few key uses consistently present themselves within the same trade, and even throughout different industries.

Top 5 industrial IoT use cases

It’s important to note that IoT use cases will likely expand in the next few years. That being said, we have compiled the top five industrial IoT use cases of today:

Predictive maintenance

Keeping assets up and running has the potential to significantly decreasing operational expenditures (opex), and save companies millions of dollars. With the use of sensors, cameras and data analytics, managers in a range of industries are able to determine when a piece of equipment will fail before it ever does. These IoT-enabled systems can sense signs of warning, use data to create a maintenance timeline and preemptively service equipment before problems occur.

By leveraging streaming data from sensors and devices to quickly assess current conditions, recognize warning signs, deliver alerts and automatically trigger appropriate maintenance processes, IoT turns maintenance into a dynamic, rapid and automated task.

This approach promises cost savings over routine or time-based preventive maintenance, because tasks are performed only when they are needed. The key is to get the right information in the right time. This will allow managers to know which equipment needs maintenance, maintenance work can be better planned and systems remain online while workers stay on task. Other potential advantages include increased equipment lifetime, increased plant safety and fewer accidents with negative impact on environment.

Smart metering

A smart meter is an internet-capable device that measures energy, water or natural gas consumption of a building or home, according to Silicon Labs.

Traditional meters only measure total consumption, whereas smart meters record when and how much of a resource is consumed. Power companies are deploying smart meters to monitor consumer usage and adjust prices according to the time of day and season.

Smart metering benefits utilities by improving customer satisfaction with faster interaction, giving consumers more control of their energy usage to save money and reduce carbon emissions. Smart meters also give visibility of power consumption all the way to the meter so utilities can optimize energy distribution and take action to shift demand loads.

According to Sierra Wireless, smart metering helps utilities to:

  • Reduce operating expenses by managing manual operations remotely
  • Improve forecasting and streamline power-consumption
  • Improve customer service through profiling and segmentation
  • Reduce energy theft
  • Simplify micro-generation monitoring and track renewable power

Asset tracking

A study on the maturity of asset efficiency practices from Infosys and the Institute for Industrial Management (FIR) at Aachen University revealed that 85% of manufacturing companies globally are aware of asset efficiency, but only 15% of the surveyed firms have implemented it at a systematic level.

source: Actsoft
source: Actsoft

Infosys and other supporting companies including Bosch, GE, IBM, Intel, National Instruments and PTC have launched a testbed with the main goal of collecting asset information efficiently and accurately in real-time and running analytics to allow the firms to make the best decisions.

The goal of asset tracking is to allow an enterprise to easily locate and monitor key assets (e.g. raw materials, final products, and containers) and to optimize logistics, maintain inventory levels, prevent quality issues and detect theft.

One industry that heavily relies on asset tracking is maritime shipping. On a large scale, sensors help track the location of a ship at sea, and on a smaller scale they are able to provide the status and temperature of individual cargo containers. One benefit is real-time metrics on refrigerated containers. These containers must be stored at constant temperatures so that perishable goods remain fresh.

Each refrigerated container needs to be equipped with temperature sensors, a processing unit and a mobile transmitter.

To continue reading, please visit the full article on Industrial IoT & 5G

 

Read more…

Sponsor