Four Letter Word generator based on an associative word dictionary.

Dependencies:   _24LCXXX

Dependents:   vfd_modular_clock_mbed

Four Letter Word generator based on an associative word dictionary.

Needs an EEPROM to function (can be programmed onto a 24LC512 I2C EEPROM, or available as a pre-programmed add-on board)

Comes with a censored mode that removes expletives as well as a fully uncensored mode.

For details see:

Revision:
4:706c5fa05343
Parent:
0:4d3dec05a4b7
Child:
5:8748fd0dce7c
--- a/flw.cpp	Tue Feb 10 22:36:20 2015 +0000
+++ b/flw.cpp	Fri Feb 20 09:59:01 2015 +0000
@@ -80,7 +80,7 @@
 
 void FourLetterWord::begin(uint32_t seed, bool censored)
 {
-  m_lfsr = seed;
+  m_lfsr = seed + 1;
   m_censored = censored;
 }