Class for making communication easier from code to i2c connected Rohm/Kionix sensors. Maybe could be used later also for abstracting Arduino/mbed os. Code ported from 'C'-library rohm-sensor-hal.
Dependents: kionix-kx123-hello rohm-bh1790glc-hello simple-sensor-client rohm-SensorShield-example
Fork of rohm-sensor-hal by
.gitignore@0:38c206f19bb7, 2016-04-11 (annotated)
- Committer:
- MikkoZ
- Date:
- Mon Apr 11 08:26:39 2016 +0000
- Revision:
- 0:38c206f19bb7
- Child:
- 3:309530db41ec
Added initial version of i2C HAL
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
MikkoZ | 0:38c206f19bb7 | 1 | # Object files |
MikkoZ | 0:38c206f19bb7 | 2 | *.o |
MikkoZ | 0:38c206f19bb7 | 3 | *.ko |
MikkoZ | 0:38c206f19bb7 | 4 | *.obj |
MikkoZ | 0:38c206f19bb7 | 5 | *.elf |
MikkoZ | 0:38c206f19bb7 | 6 | |
MikkoZ | 0:38c206f19bb7 | 7 | # Precompiled Headers |
MikkoZ | 0:38c206f19bb7 | 8 | *.gch |
MikkoZ | 0:38c206f19bb7 | 9 | *.pch |
MikkoZ | 0:38c206f19bb7 | 10 | |
MikkoZ | 0:38c206f19bb7 | 11 | # Libraries |
MikkoZ | 0:38c206f19bb7 | 12 | *.lib |
MikkoZ | 0:38c206f19bb7 | 13 | *.a |
MikkoZ | 0:38c206f19bb7 | 14 | *.la |
MikkoZ | 0:38c206f19bb7 | 15 | *.lo |
MikkoZ | 0:38c206f19bb7 | 16 | |
MikkoZ | 0:38c206f19bb7 | 17 | # Shared objects (inc. Windows DLLs) |
MikkoZ | 0:38c206f19bb7 | 18 | *.dll |
MikkoZ | 0:38c206f19bb7 | 19 | *.so |
MikkoZ | 0:38c206f19bb7 | 20 | *.so.* |
MikkoZ | 0:38c206f19bb7 | 21 | *.dylib |
MikkoZ | 0:38c206f19bb7 | 22 | |
MikkoZ | 0:38c206f19bb7 | 23 | # Executables |
MikkoZ | 0:38c206f19bb7 | 24 | *.exe |
MikkoZ | 0:38c206f19bb7 | 25 | *.out |
MikkoZ | 0:38c206f19bb7 | 26 | *.app |
MikkoZ | 0:38c206f19bb7 | 27 | *.i*86 |
MikkoZ | 0:38c206f19bb7 | 28 | *.x86_64 |
MikkoZ | 0:38c206f19bb7 | 29 | *.hex |
MikkoZ | 0:38c206f19bb7 | 30 | |
MikkoZ | 0:38c206f19bb7 | 31 | # Debug files |
MikkoZ | 0:38c206f19bb7 | 32 | *.dSYM/ |
MikkoZ | 0:38c206f19bb7 | 33 | |
MikkoZ | 0:38c206f19bb7 | 34 | # Yotta files |
MikkoZ | 0:38c206f19bb7 | 35 | yotta_modules/ |
MikkoZ | 0:38c206f19bb7 | 36 | yotta_targets/ |
MikkoZ | 0:38c206f19bb7 | 37 | build/ |
MikkoZ | 0:38c206f19bb7 | 38 | upload.tar.gz |
MikkoZ | 0:38c206f19bb7 | 39 |