TOP Contributors

  1. MIKROE (2655 codes)
  2. Alcides Ramos (353 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 (136771 times)
  2. FAT32 Library (69976 times)
  3. Network Ethernet Library (55945 times)
  4. USB Device Library (46270 times)
  5. Network WiFi Library (41888 times)
  6. FT800 Library (41183 times)
  7. GSM click (28987 times)
  8. PID Library (26414 times)
  9. mikroSDK (26372 times)
  10. microSD click (25381 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

Motion 4 click

Rating:

5

Author: MIKROE

Last Updated: 2020-04-28

Package Version: 1.0.0.0

mikroSDK Library: 1.0.0.0

Category: Motion

Downloaded: 2248 times

Not followed.

License: MIT license  

Motion 4 Click is a Click board based on EKMC1603111, PIR motion sensor from Panasonic Corporation that's used as human motion detector.

No Abuse Reported

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

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

Do you want to report abuse regarding "Motion 4 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

Motion 4 Click

Motion 4 Click

Native view of the Motion 4 Click board.

View full image
Motion 4 Click

Motion 4 Click

Front and back view of the Motion 4 Click board.

View full image

Library Description

Library provides functions for controlling en pin, and getting int pin state.

Key functions:

  • void motion4_set_en_pin ( uint8_t state ) - Function that sets en pin state
  • uint8_t motion4_get_int ( void ) - Function that gets int pin state

Examples description

The application is composed of three sections :

  • System Initialization - Initialization of pins
  • Application Initialization - Maps pins and enables device
  • Application Task - Waiting for motion to be detected
void application_task ( )
{
    uint8_t int_status;

    int_status = motion4_get_int();

    if ( int_status != MOTION4_INTERRUPT_NOT_DETECT )
    {
        mikrobus_logWrite( "Motion detected", _LOG_LINE );
        while ( int_status != MOTION4_INTERRUPT_NOT_DETECT )
        {
            int_status = motion4_get_int();
        }
        mikrobus_logWrite( "Motion wait", _LOG_LINE );
    }
}

Other mikroE Libraries used in the example:

  • UART

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

Altitude click

0

Altitude click features a MEMS pressure sensor MPL3115A2, which provides accurate pressure/altitude (20-bit) and temperature (12-bit) data.

[Learn More]

GPS 3 click

5

Simple example which demonstrates usage of the GPS3 Click board with QUECTEL L80 GPS module. It displays a map of the world on the GLCD and shows the location of the GPS module on it.

[Learn More]

Gaussmeter click

5

Gaussmeter click is a device that is used for measuring the magnetic field in X, Y and Z axes. This Click board features the MLX90393, a micropower magnetometer based on the proprietary Triaxis technology, from Melexis. It can detect the magnetic field down to 0.8 µT (8 mG) thanks to this technology.

[Learn More]