TinyDatabase API
Let's discover TinyDatabase in less than 5 minutes.
#
OverviewTinyDatabase is a library that encapsulate EEPROM manipulation. It allows user to work with a high level and simple syntax to access data stored in
microcontroller memory, integrated circuit or others modules memory like
RTC. Instead of use index (0, 1, 3, ...) and interate over these index to get data from their persistent memory user can directly write queries like
some SQL
queries.
#
Example#include <TinyDatabase_Arduino.h>
// MemoryManager object to access data baseMemoryManager mem;
void setup() { // put your setup code here, to run once: Serial.begin(9600); delay(1000);
int age[6]; float rate[6]; int nbValue = 0;
int max_value = 28; mem.FROM("EM") .WHERE("ag", FILTER::isLessThan, &max_value) .SELECT_ALL("ag", age, nbValue) .SELECT_ALL("rt", rate, nbValue) .DONE();
for (size_t i = 0; i < nbValue; i++) { PRINT("-read-", i); PRINT("age", age[i]); PRINT("rate", rate[i]); Serial.println(); }
}
void loop() { // put your main code here, to run repeatedly:}
#
InstallationWe are working to make it available on the Arduino Libraries Manager. But you can quickly test it by:
Clone the library at this url: TinyDatabase_Arduino
In your Arduino IDE,
- go to
Sketch
- select
Include Library
- select
Add .ZIP Library
and choose the TinyDatabase_Arduino zip that you download previously
- go to
In Arduino Examples, you will find some useful examples on this library that you can test.
#
Architecture#
TargetOur goal is to make TinyDatabase available on the maximum of boards with internal storage. So we can provide a high level api. Currently, this library is tested on:
- Arduino board with AVR ATmega 328p
We plan to write a version for RTC
(clock module) which has more memory.
#
ContributorThis library was built and maintained by
Tawaliou ALAO Engineer at YoupiLab
.
Thanks to my brother ALIDOU Abdoul Majeed who help me to define the database architecture
Thanks to YoupiLab to support the project