TLI493D  2.0.1
With this Sensor, you can detect the position of a Joystick etc. without any additional mechanical components. You just have to provide a magnet that is fixed to a movable component.
BusInterface.h
Go to the documentation of this file.
1 #ifndef TLI493D_BUSIF_H_INCLUDED
2 #define TLI493D_BUSIF_H_INCLUDED
3 
4 #include <Arduino.h>
5 #include <Wire.h>
6 
7 #define TLI493D_NUM_REG 23
8 
9 namespace tli493d
10 {
11 
12 typedef struct
13 {
14  TwoWire *bus;
15  uint8_t adress;
16  uint8_t regData[TLI493D_NUM_REG];
18 
19 }
20 
21 #endif
Definition: BusInterface.h:12
Definition: BusInterface.h:9
uint8_t adress
Definition: BusInterface.h:15
TwoWire * bus
Definition: BusInterface.h:14