We needed a simple and efficient way to store configuration settings and values between projects, using common, low-cost, external I2C EEPROM Memory.
The Embedis database is persistent, and can be used across multiple projects to configure your program settings for the specific hardware and network configuration that you are using. The Embedis database supports the internal CPU EEPROM storage by default, but you can also add other external memory devices easily, as we show with this example, by adding an external I2C EEPROM such as the 24AA64 (8K bytes) or the 24LC256 (32K bytes).
What is Embedis?Embedis is a very small, in-memory, data structure store for key/value pairs; and why it is also known as a "keystore server". Embedis can be used as a database, cache, and message broker, with it's publish and subscribe mechanisms. Embedis uses a syntax similar to the popular "Redis" program, which has API/bindings available for C/C++, Python, Ruby, TCL, etc.
In this example the Embedis command interpreter is connected to the Serial Monitor (i.e. Serial.print), however we have examples that show it running several simultaneous connections at once, including Telnet, WWW, MQTT, and others.
The Embedis database is persistent, and can be used across multiple projects to configure your program settings for the specific hardware and network configuration that you are using. The Embedis database supports the internal CPU EEPROM storage by default. You can also add other external memory devices easily, as we show in this example, by adding an external I2C EEPROM such as the 24LC64 (8K bytes).
Now, you don't need to recompile your program and reflash your device in order to change your device and project settings anymore. Project settings can be changed "on-the-fly" with just a serial or wireless interface! (some settings changes however, will require a restart/reboot to take effect.)
Installing EmbedisTo Install Embedis in the Arduino IDE, please see the Detailed Install Directions. Embedis is installed using the Arduino Library Manager, from the top menu bar :
Sketch -> Include Library -> Manage Libraries -> Embedis
The extEEPROM library is installed using the Arduino Library Manager, from the top menu bar :
Sketch -> Include Library -> Manage Libraries -> extEEPROM
Make sure that you are grounded, and use a personal ground strap and static protected surface if you have one.
Set the EEPROM Click for 5 Volt OperationNote that the Voltage of the Arduino Uno board is 5 Volts, and the power select on the EEPROM click should also be set to 5V operation.
You'll notice that on my board I have removed the stock 24C08WP EEPROM, as it is a tiny 256 bytes of storage. Do yourself a favor and replace it with a 24LC64 (8192 bytes) or even larger EEPROM, as you can see I have done using an Adafruit DIP adaptor board for a surface mount part. You can easily order a DIP version also, if you don't want to do any soldering.
Build Tip:You'll also notice that I put "stacking headers" on the EEPROM Click, so that I can use the same socket for UART & SPI peripherals as well other I2C peripherals.
Install the EEPROM ClickUnplug all connections from the the Arduino Uno Click Shield, and install the EEPROM Click Board in Socket 2 - make sure to get the board direction correct by lining up the "cut corner" on the bottom right.
After installing the Embedis library in the Arduino IDE, the Embedis examples will be available under the menu as :
File -> Examples -> Embedis -> Uno -> Embedis_I2C_EEPROM
Make sure to select the Arduino Uno board model under the Board Manager, and set the "port" to the correct COM: port for your board. Then just press the "Upload" button to compile and download your project.
Once you have flashed your board using the Upload command, open the Arduino Serial Monitor and you can begin giving commands to Embedis. Type "commands" into the Arduino Serial Monitor, and get a list of commands :
Now this is where it gets really interesting, you have two (2) different memories available to you to store your data in, which in Embedis are referred to as "DICTIONARIES" and these are named EEPROM (internal to the CPU) and I2C_EEPROM (external chip on the I2C bus) :
By using the Embedis "select" command, you can select which memory you are going to use to read and write, for example when you type "select EEPROM", then Embedis will return the number of bytes of free space in the EEPROM dictionary. The Uno gives you 1024 bytes of EEPROM, and two (2) of those bytes are used by Embedis for a pointer, so you have 1022 bytes to work with
Similarly, when you "select I2C_EEPROM", Embedis will select the I2C_EEPROM and return the number of free bytes in that Embedis Keystore. If you are using a 24AA64, you will see that you have almost 8K bytes of storage to work with, and if using a 24AA256 you will have almost 32K of storage space! In the example below, we are using an 8K x 8 (24AA64) I2C EEPROM part :
Now you can start to add data to your Embedis Keystore using the "set" and "get" commands. Since the last "Dictionary" that was selected was the I2C_EEPROM, that is where our data will be written, for example :
So we created a key named "IPADDR" and set it to "192.168.1.127" . Make sure to use quotes around any string with spaces or special characters. Now let's use the "get IPADDR" command to retrieve the data from the Embedis Keystore.
There are many advanced features of Embedis, including the ability to publish and subscribe to changes in keys and the logging system. We'll cover those in upcoming projects here at the thingSoC platform!
You can use the Embedis keystore to hold all kinds of setup and configuration information, such as device pins, mode and baud rate settings, as well as sensor calibration data.
Air Quality SensorWe added the Air Quality Sensor to Analog Input A0 (Socket #1), in order to show how easy it is to add commands and do custom processing. Just enter the command :
analogRead A0
and you'll get the AiR quality reading from the sensor - cool, eh? Now you can store that value in the Embedis keystore. We like to keep things like the sensor calibration data in the keystore...
Happy Hacking!
Notes:9/16/2016 : Embedis Version 1.1.5 has been tested with the latest libraries.
Comments
Please log in or sign up to comment.