Hello,
I am looking to record or store certain events with time using an Arduino system. To be precise, can you help me develop a simple system that will have an IMU and a clock with storage where I can save events with time when it gets triggered, i.e. save the timing of a trip/fall/balance loss when the IMU detects deviation.
What does IMU measure and what is it? To me it means an International Measurementsm it could be Inertial Measurement Unit! Regardless you monitor its output, and when you get that you can create a timestamp and save it in memory. There is internal EEPROM memory in the arduino but you can also add a SD card reader/writer module and of course a RTC (Real Time Clock) module. If you want it self contained you can add a LCD display, Bluetooth, Wi-Fi module etc. Here are some choices for IMU!
IMU I Miss You
IMU Inertial Measurement Unit
IMU Imposta Municipale Unica (Italian: Single Municipal Tax)
IMU International Medical University (Malaysia)
IMU Islamic Movement of Uzbekistan
IMU International Mathematical Union
IMU Indiana Memorial Union (Indiana University)
IMU Iowa Memorial Union
IMU Inertial Motion Unit (sensors)
IMU Inertial Measuring Unit
IMU Inner Mongolia University
IMU Information Management Unit
IMU Industrial Mixed Use (zoning)
IMU Indian Maritime University (India)
IMU Interactive Marketing Unit (Internet advertising)
IMU Innsbruck Medical University (Innsbruck, Austria)
IMU Interest Make-Up (finance)
IMU Institut für Medienforschung und Urbanistik (Germany)
IMU Intensive Management Unit
IMU Irish Missionary Union (Ireland)
IMU Israel Mathematical Union
IMU Indre Missions Ungdom (Denmark)
IMU International Marine Underwriters
IMU Initial Mark-Up (difference between the cost of a good sold and its retail price)
IMU Incident Management Utility (Civil Air Patrol)
IMU In My Understanding
IMU Interurban Multiple Unit (Australia)
IMU International Metaphysical University (Vienna, WV)
IMU Imágenes y Muebles Urbanos
IMU Income Maintenance Unit
IMU Institute for Management and Environment
IMU International Metallurgists Union
IMU Inertial Mapping Unit
IMU Inert Mine, Unmodified
IMU Inertia Navigational Measurement Unit (NASA)
IMU Interactive Member Universal
IMU Interactive Multimedia Unit
IMU Internal Measuring Unit
IMU International Measurements Unit
IMU International Measurement University
IMU Impact Meteorology Unit (US NOAA)
IMU Internationales Schwimm-Meeting Uster
IMU Intermediate Maintenance Unit
This response is to help you get started in solving your problem, not solve it for you.
Good Luck & Have Fun!
Gil
To make a time stamp with the Arduino, simply store the current value of milliseconds as follows:
unsigned long event_time_stamp = millis();
This will save the number of milliseconds since program startup. The built in clock is not very accurate and will gain or lose several minutes every day.
If you need an accurate time stamp, or date information, you will need an external RTC (Real Time Clock) or some other source of time information.