simon says with pro mini, display, ws2812 and touch keys
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
atmega-simon/rng.h

16 lines
229 B

//
// Created by MightyPork on 2017/09/16.
//
#ifndef FIRMWARE_RNG_H
#define FIRMWARE_RNG_H
#include <stdint.h>
void rng_set_seed(uint32_t seed);
void rng_restart(void);
uint8_t rng_next_item(void);
#endif //FIRMWARE_RNG_H