pfodParser  3.61.0
The pfodParser library is handles commands sent from the Android pfodApp, pfodApp supports WiFi, BLE, Bluetooth and SMS connections
pfodRandom.h
Go to the documentation of this file.
1 #ifndef pfodRandom_h
2 #define pfodRandom_h
3 #include <stdint.h>
4 
5 // return random as a long
6 long pfodRandom();
7 
8 // return lower 8 bits of random
9 uint8_t pfodRandom8();
10 
11 // return lower 16 bits of random
12 uint16_t pfodRandom16();
13 
14 #endif // pfodRandom_h
uint8_t pfodRandom8()
uint16_t pfodRandom16()
long pfodRandom()