TOP Contributors

  1. MIKROE (2658 codes)
  2. Alcides Ramos (355 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (112 codes)
  5. Chisanga Mumba (90 codes)
  6. S P (73 codes)
  7. dany (71 codes)
  8. MikroBUS.NET Team (35 codes)
  9. NART SCHINACKOW (34 codes)
  10. Armstrong Subero (27 codes)

Most Downloaded

  1. Timer Calculator (136929 times)
  2. FAT32 Library (70051 times)
  3. Network Ethernet Library (56012 times)
  4. USB Device Library (46313 times)
  5. Network WiFi Library (41935 times)
  6. FT800 Library (41243 times)
  7. GSM click (29032 times)
  8. PID Library (26435 times)
  9. mikroSDK (26423 times)
  10. microSD click (25390 times)
Libstock prefers package manager

Package Manager

We strongly encourage users to use Package manager for sharing their code on Libstock website, because it boosts your efficiency and leaves the end user with no room for error. [more info]

< Back
mikroSDK Library

PIR click

Rating:

5

Author: MIKROE

Last Updated: 2019-10-01

Package Version: 1.0.0.0

mikroSDK Library: 1.0.0.0

Category: Motion

Downloaded: 2806 times

Not followed.

License: MIT license  

PIR click is a pyroelectric sensor which generates a voltage when exposed to infrared radiation emitted by live bodies.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "PIR click" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "PIR click" changes.

Do you want to report abuse regarding "PIR click".

  • mikroSDK Library 2.0.0.0
  • Comments (0)
DOWNLOAD LINK RELATED COMPILER CONTAINS
mikroBasic PRO for ARM
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for AVR
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for dsPIC30/33 & PIC24
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for FT90x
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for PIC
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for PIC32
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for ARM
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for AVR
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for dsPIC30/33 & PIC24
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for FT90x
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for PIC
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for PIC32
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for ARM
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for AVR
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for dsPIC30/33 & PIC24
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for FT90x
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for PIC
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for PIC32
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc

mikroSDK Library Blog

PIR click

PIR click

Native view of the PIR click board.

View full image
PIR click

PIR click

Front and back view of the PIR click board.

View full image

Library Description

Library contains function for reading single ADC conversion data Library contains function for reading single ADC conversion converted to miliVolts Library contains function for scaling ADC data to value in desired range Library contains constant for device address

Key functions:

  • uint16_t pir_getAdc( void ) - reads single ADC conversion data
  • float pir_getMiliVolt( uint16_t refVoltage ) - reads 12bit ADC data and convets it to miliVolts
  • float pir_scaleResults( uint16_t inVal, uint16_t outMin, uint16_t outMax ) - scales ADC conversion data (inVal) to desired range (from outMin to outMax) and returns scaled data (outVal)

Examples description

The application is composed of three sections :

  • System Initialization - Initializes LOG, I2C and AN pin as input
  • Application Initialization - Initializes I2C driver
  • Application Task - Reads ADC data, converts it to miliVolts and logs scaled value in miliVolts
void applicationTask( )
{
    adcVal = pir_getAdc( );
    mapOut = pir_scaleResults( adcVal, 0, 3303 );
    FloatToStr(mapOut, text);
    mikrobus_logWrite(" Voltage: ", _LOG_TEXT);
    mikrobus_logWrite(text, _LOG_TEXT);
    mikrobus_logWrite(" miliVolts ", _LOG_LINE);
    Delay_ms(100);
}

Other mikroE Libraries used in the example:

  • I2C
  • UART
  • Converisons

Additional notes and informations

Depending on the development board you are using, you may need USB UART clickUSB UART 2 click or RS232 click to connect to your PC, for development systems with no UART to USB interface available on the board. The terminal available in all MikroElektronika compilers, or any other terminal application of your choice, can be used to read the message.

ALSO FROM THIS AUTHOR

Buck 20 click

0

Buck 20 Click is a compact add-on board that contains a DC-DC power converter that steps down the voltage from its input to its output. This board features the MP2316, a fully-integrated, high-efficiency, synchronous, step-down switch-mode converter from Monolithic Power Systems (MPS). The MP2316 achieves 3A continuous output current over a wide input supply range from 4V to 19V. It has excellent load and line regulation and can operate efficiently over a vast output voltage load range. The MP2316 also offers advanced protection features such as undervoltage, overcurrent, and short-circuit detections.

[Learn More]

Flash 5 click

0

Flash 5 Click is a perfect solution for the mass storage option in various embedded applications.

[Learn More]

4G LTE GNSS click

0

4G LTE&GNSS Click is a compact add-on board designed for advanced global tracking and telematics applications, enabling developers to build highly efficient and smaller solutions without compromising performance. This board features the LENA-R8, a multi-mode LTE Cat 1bis module from u-blox. It stands out for its compact size and extensive network compatibility. It supports 14 LTE bands, four GSM/GPRS bands for universal connectivity, and integrated u-blox GNSS for precise global tracking. The board facilitates seamless communication via UART and includes a USB interface for comprehensive device management and firmware updates.

[Learn More]