How to get started with Internet of things?

Monday, September 2, 2019

In recent times, Internet of things has evoked greater interest among technical folks particularly from learning perspective. Generally, most common questions revolves around like how to get started ? OR I have good programming knowledge what would be next step towards learning IOT ? OR already into analytics / ERP and now I understand, IOT would play a part in analytics or ERP in future, so how do I get started?.

 Yes, IOT can even be considered as subset or part of Machine learning, Analytics or even Artificial intelligence, as sensor data might play significant role in all this. 

 Generally, pure software development is much more matured, one would find clear line drawn on role like - Database administrator, DB developer or front end UI developer etc But even in software development in recent times, with optimization or call it 'cost cutting' we also come across term like 'full stack' developer, who are expected to take care of front-end and back-end. Currently, IOT is also similar and its evolving. One need to have good understanding of all layers of IOT.

 Lets briefly look at different layer in IOT:

 1. Understanding about Sensor and control This part is more of electrical and electronics rather than programming. Ideally, measures the physical parameters such as light, heat, weight etc converts them into necessary signal for processing. Folks with pure programming background might find it difficult. However, if one has basic understanding as how electrical, electronics circuits work, it would be far easier to understand. One need to have some basic knowledge about Ohms law, AC/DC voltage, resistors , capacitors, power-supply etc along with some basics on digital circuits as well. Traditionally Sensor or Transducer was analog type, meaning its mv output or resistance used to vary. But, these days digital sensors too are common, which means one can directly feed the data into the input pins of IOT device, without the need for analog to digital conversion.

 2. IOT Devices IOT devices are the trigger for the growth of IOT in recent time. About a decade back, one need to build complete electronic circuit starting with a bare microprocessor(8085) or micro-controller (80C31). Internet or cloud were never used earlier. With internet catching up in late 90's and micro-controllers too evolved into a modular construct of having necessary associated circuit in place to make it as 'plug and play' type. Arduino boards were the first general purpose micro-controller board which got introduced in mid 2000, which had all the necessary electronic components and circuit in place, so that one could feed digital or analog (using its A/D Input pins) signal to the board. Post which, one can use C/C++ programming to acquire the data, process it and then based on processing send out digital signal to actuator or relay to control process. But still with early Arduino's (uno) the capability to connect to internet was missing. One had to use external ethernet board or wifi unit to connect to Internet to make it IOT ready, which led to complexity in Interfacing.

 After 2010, low cost Raspberry pi got introduced, it was introduced as single board computer towards kids learning. But interestingly, it has features to connect to external world through input-output pin, built in wifi to communicate to Internet, Linux OS and hence with multiple programming language support. Added to this, low pricing of about 35 USD, made its growth exponential and it also redefined the approach and cost to IOT.

 Also, in last few years Node MCU - ESP8266/32, the ultra low cost IOT device (approx.5 USD) make it even more simpler and cost effective towards building IOT applications. These IOT devices are still evolving and maturing, hence I believe as time progress, one would get better one - both feature and cost wise. Interestingly, Intel who had earlier offered IOT board like Intel Galileo, Joule, and Edison discontinued them towards end 2017.

Not sure, whether it was because of pricing impact made by Raspberry, Node MCUs. There are few other IOT devices from other vendors too but there quite a lot of similarities to the above described one.

 3. IOT platform To make it complete, the devices need to communicate anywhere across the world using internet for which cloud based platform are required. This is required, so that data acquired by IOT devices can be sent to IOT platform for storage and further processing, including analyses of data captured towards any decision making, as IOT devices are resource contained one There are multiple IOT platform - Azure, AWS, Google, Oracle and many more. Some of them are open source or free for limited time period for testing, learning as well. Have found Thinkspeak and Cayanne (mydevices) quite interesting and innovative too. Cayannce (mydevices.com) is 'plug and play' type IOT platform. There are many more.

 4. Programming and protocols. For integration of all these, one need to use programming language along with appropriate protocols towards communication. Python, Java, Javascript, C/C++ are most commonly used. In case of highly constrained IOT device - ESP8266/32, micropython is used in recent times. On protocols - MQTT, REST API, HTTP and associated protocols are generally used. For most IOT applications, high internet bandwidth may not be critical - meaning small data-set or messages is what would be sent to internet, at the same point of time the devices data communication need to have higher geographical reach - LORAWAN (long range wide area network) protocol is used, which is at infant stage and expected to grow over period of time. This is exactly opposite of wifi network - which is high internet bandwidth for bulk data and data communication reach is fairly less (say 10 meters) from wifi routers point.

 Finally, IOT field is evolving and also Gartner predicts by 2020, its estimated that more than 20.8 billion IoT devices will be in use.

Hence, could open up plethora of opportunities for techies in near future. These days, number of institutes and professionals are offering both instructor led and online courses covering above. Towards, quicker learning, one could join them post due diligence considering the course coverage and with ROI in mind.


Read more! Read more...

Data modelling and Relational database design

Sunday, January 20, 2019

Modern database and applications development software is so easy to use that  many  people  can  quickly  learn  to   implement  a  simple  database  and  develop  simple  applications  within  a  week  or  so,  without  giving  design  much thought. As data volume grows and when users request addition functionality, they might incorrectly add columns in table since appropriate database design is not available. This  not only causes data redundancy in database but also can cause performance issue to application and database as well. Ultimately, due to poor database design, the business would be the loser.

A good database design not only avoids data redundancy but also improves database performance over period of time as the database volume grows and when business changes are requested , it would be far more easier to understand as where to make the appropriate changes in the Database. The data modelling and database design is like a building blue print and ultimately it would  make application users happy and business would benefit.

Have published as course in Udemy. This course uses the Oracle SQL Data modeler extensively to discuss and demonstrate  Database modelling  and Database design.

Oracle SQL Data modeler is a tool, which make learning Data modelling and Database design much easier and also provides you with  a professional approach design database for business application effectively to plan, develop, implement and maintain them on an ongoing process.
In this course you would learn:
  • Process Modelling
    • Develop a Data Flow Diagram by identifying processes, external agents, information stores and information flows that show how the information flows  Business flow Diagram
  • Logical Model
    • Create an Entity Relationship Diagram by identifying entities, attributes, relationships.
    • Normalize the Entity Relationship Diagram to third Normal form

  • Relational Model
    • Validate  Logical and Relational Model through Design rules
    • Engineer the Entity Relationship Model into an relational database design
    • Complete the Physical Model and generate the DDL scripts
Finally, at the end of the course, you would understand the importance of data modelling and database design.

To know more about this course, please  click here to know more details and for enrollment in the course


Read more! Read more...

Linux, Unix essential and basic of shell scripting

Friday, December 21, 2018


Linux and Unix is one among the preferred operating system due to multiple unique features including being open source.

With advent of Internet of things, the Linux skill demand would be growing, the primary reason being IoT device have constrained resources, such as memory and processor. Linux is not only open source, but being light weight and not virus prone, it's the most preferred as IOT device OS.

Happy to announce the launch of course in Udemy on Linux, Unix essentials. This course covers Linux, Unix command line - commands which are essential towards learning the OS and it also teaches Bash Shell scripting.

 Ideally suited for beginner to get started to progress to become an expert.

click here to know more details and for enrollment in the course


Read more! Read more...

Managing Project with Oracle Primavera P6 Professional

Friday, November 23, 2018

For managing projects, there are software applications which would help project team to plan, execute and control projects.

As the project gets executed project progress needs to be updated , its critical scheduled and budget are managed as per baseline set at the start of the project. Towards this, project manager has to be perform earned value analysis from time to time and take corrective actions when required

Also, importantly risk, issues needs to analyzed tracked throughout the project life-cycle.

Towards, all this one need to have a software application which support all this. Oracle Primavera is one such tool, which can perform all these tasks quite effectively right from initiation for the project till closure of the project

Have recently launched the course about Oracle primavera. The same can be accessed at Udemy. click here to know more details about the course



Read more! Read more...

Internet of things - Demystified

Sunday, October 14, 2018

Internet of things is one area, which I have been focusing on last few years

It is predicted that 30 billion devices would be connected by 2023, from the present 15 billion devices. This would create huge opportunity potential for IOT and machine learning experts as well. Moreover, the source data or data set for machine learning are likely to be from IOT system. While machine learning or AI would be is around algorithm, IOT would be combination of electrical, electronic and software programming.

Quite happy to announce that, I was able to create the course passionately and launched it as online digital on demand course in Udemy.

It's one unique covers that, it covers the commonly used IOT devices such as - Arduino UNO, ESP8266 NODE MCU and Raspberry Pi 3. Interestingly, for ESP8266 NODE MCU has extensively used micro python firmware. The course also guides one as how to flash micropython.

Now, offering introductory discount on the list price. Please refer link for more details and about the introductory pricing.

https://www.udemy.com/internet-of-things-iot-demystified/?couponCode=IOT-D01 


Read more! Read more...

PMP certification: Approach, Flash card and Mock exams.

Thursday, September 27, 2018


You might be interested PMP or CAPM certification, but not sure where and how to start ?

This course not only provide the approach achieve your certification in a projectized way, but also you can test your knowledge as you progress through flash card and two mock exams. By taking this approach, you can confidently appear for exam. Alternatively, if you are already on your way to certification through preparation, you can then test your knowledge through use of flash cards and take up the scenario type PMBOK6 based online mock exams. Face the real PMP exams with enhanced confidence.

  •  Approach : Help you to know more about the PMP/CAPM certification. 
  •  Flash cards : You can test your knowledge to check your understanding on critical project management concepts and terminology from PMBOK6 perspective. 
  •  Mock exams: It has real online scenario type multiple questions, this will assist you in preparing yourself for for actual PMP exams. The mock exams also has explanation for answer where ever essentials. 
 More importantly, the mock exams are uniquely designed, so as to provide the features, look and feel of the real exam.
It has feature such Timer with number of question answered indicator Skip question or mark for review.

 Now, offering this course at introductory discounted price. Please refer link for details


https://www.udemy.com/pmp-certification-approach-flash-cards-and-mock-exams/?couponCode=PMP-D01

 More importantly its all on-line.

 Happy learning!!!


Read more! Read more...

Software Project Management with MS projects professional

Sunday, August 19, 2018

After a long gap, posting about the new online course on " Software Project Management with MS project". This course covers waterfall, Agile and Kanban methodology

 Proving introductory offer for the course, please visit the page link for details and discounted price

https://www.udemy.com/software-project-management-using-ms-project/?couponCode=SPM-D01


Read more! Read more...

  © Blogger template Noblarum by Ourblogtemplates.com 2009

Back to TOP  

Visit blogadda.com to discover Indian blogs Blog Ratings International Business Blogs - BlogCatalog Blog Directory Blog Flux Directory blogarama - the blog directory Top Blogs - Increase SEO of Your Blog, Blogging Resources Computers Blog Directory