Hello community
In the pin_change_int example the following code is written:
err_code = nrf_drv_gpiote_in_init(PIN_IN, &in_config, in_pin_handler);
So, this basically means: whenever PIN_IN goes from low to high, the 'in_pin_handler' is called.
Is there a quick and easy way to make it call the 'in_pin_handler' when PIN_IN goes from high to low (instead of low to high)?
Thanks!