Changed to work with: http://redbearlab.com/blenano/

Dependents:   Garagem

Fork of RNG by Francois Berder

Random.h

Committer:
dgomes
Date:
2015-08-30
Revision:
3:75b4f86fb3aa
Parent:
2:2eb90943983b

File content as of revision 3:75b4f86fb3aa:

#ifndef RANDOM_H
#define RANDOM_H

#include "mbed.h"

class Random
{
    public :
        
        static void init();
        static uint8_t getByte();
        static void getBytes(uint8_t *out, uint32_t length);
};

#endif