Fork of Demo program for ard2pmod library. Alarm features of RTC have not been tested, please try them out.

Dependencies:   Terminal ard2pmod mbed

Fork of ard2pmod_demo by Maxim Integrated

main.cpp

Committer:
j3
Date:
2014-11-20
Revision:
0:f906040920d7
Child:
1:37fd05629bd3

File content as of revision 0:f906040920d7:

//Test Ard2Pmod Class


#include "ard2pmod.h"


int main(void)
{
    /* available PMOD types
       PMOD_TYPE_I2C,
       PMOD_TYPE_1_GPIO,
       PMOD_TYPE_2_SPI,
       PMOD_TYPE_3_UART,
       PMOD_TYPE_4_UART,
       PMOD_TYPE_5_HBRIDGE,
       PMOD_TYPE_6_HBRIDGE
    */
    
    Ard2Pmod ard2pmod(PMOD_TYPE_1_GPIO);
    
    for(;;)
    {
        
    }
}