Skip to main content

Sensors


A sensor can be identifying the environment changes from the surrounding of the device. In the earth who are live plants, animals and human beings have some basic sensing behavior by nature, so those approaches and behaviors we fallowed and implement to nonliving things.

These are the major behavior we identify from the sensors like light, sound, motion, temperature, pressure, acceleration, position, Object presence, and Air.

Here I'm sharing few components

1. Temperature Sensor
Temperature sensor sensing the circumstance of temperature in the installed places.


2. Ultrasonics Sensor
Using ultrasonic to identify the obstacle distance in front of the device and based on the data we can manipulate the application.




3. Pressure Sensor
Find the pressure value on the device to you gave the pressure on it.



4. Water Level Sensor
A water level sensor sensing the water level in the water tank and based on value trigger the applications. 




5. Motion Sensor
The motion sensor detects the moving object in front of the device. 


Comments

  1. We are offering the industries best quality Telemetry Chemical Level Sensor which is built with CPVC or PP material and can be mounted directly on. The device is battery operated and easy to install. It is designed for any rough weather with long range temperature -13°F to 158°F and the most important matter is low cost effective.

    ReplyDelete

Post a Comment

Popular posts from this blog

How has lockdown impacted Indian farmers?

How has lockdown impacted Indian farmers?             Generally compare to other sectors it's not major impacted by our Indian farmers but we acceptable minor impacts. Here we separate major two farming cultures one is mono farming culture another one poly farming culture. Mono farming :             The major impacts from our Indian farmer for monoculture. Here I have briefly explained what are the things we had faced our local farmers. Here I explain two different crops type: Daily crops : * We harvest more than 100-kilo grams daily crops like brinjal but we unable to sell those in local markets. * We are unable to reach urban markets. * We don't have enough transport facilities. * We unable buy require fertilizer and other complements * In the early stage we are facing manpower shortage but later it's not an issue. * We unable to do value-added products. * Waste is very high for somedays Se...

Timer Display using AngularJS

Timer Display To display timer in a page means, we need to aware of angular directive as following $interval and $filter . Current time get from new Date() object from native java script.   $interval Directive:  A interval is wait into a millisecond or trigger to a function, This function many many time to repeatedly calling process is control to us.   Syntax:  $interval(fn, delay, [count], [invokeApply]); fn - a function to call repeatedly. Delay – number of millisecond to call a function. Count – Number of time to repeat.(0 value means no-repeat) invoteApply – set to false means it will skip. Example:  HTML: <div ng-app="timerApp">     <div ng-controller="timerController">         {{time}}     </div> </div> JAVAScript: var app = angular.module("timerApp", []); app.controller("timerController",['$scope','$interval...

ng-Class using angularjs Example

ng-Class in angularJS         ng-Class directive to manage a css properties from the DOM Objects. This directive very support to user presentation css apply dynamically and more response, angularjs used for bootstrap css only. Write different properties from the css file and enable from the controller scope object values. HTML:    <div ng-app="classApp">     <div ng-controller="ClassCtrl">        <span ng-if="showValue">         <p ng-class ="{'red': show, 'green': show1}">{{name}}         </p>         </span>          <span ng-if="!showValue">         <p ng-class ="{'red': show, 'green': show1}">{{name}}         </p>         </span>     </div> </div> Angular Script: ...