SAADC library and drivers for nrf52832.

Dependents:   acd52832_SAADC_Differential_input_EPD acd52832_Car_battery_ch acd52832_Car_battery_ch_2

Library to use aconno drivers for Nordic Semiconductor nrf52832 SAADC.

acd_nrf52_saadc.h

Committer:
Dautor
Date:
2017-08-23
Revision:
1:2d6e904c6843
Parent:
0:838e26b2ef09
Child:
3:fcada8b3b567

File content as of revision 1:2d6e904c6843:

/*
 * Made by Jurica Resetar and Karlo Milicevic @ aconno, 2017
 * jurica_resetar@yahoo.com
 * aconno.de  
 * All rights reserved 
 *
 */
 
 #ifndef ACD_NRF52_SAADC_H
 #define ACD_NRF52_SAADC_H
 
 #include "mbed.h"
 
 class NRF52_SAADC{
    public:
        NRF52_SAADC(int16_t *dataPointer);
        ~NRF52_SAADC();
        void getData();
    private:
        int16_t *dataPointer;
};
 
 #endif // ACD_NRF52_SAADC_H