-
Notifications
You must be signed in to change notification settings - Fork 29
Sensor connection
vrano edited this page Sep 23, 2020
·
1 revision
The next step is to connect the Raspberry Pi and the sensor.
(To Be Updated)
After connecting the sensor, open a terminal on the Raspberry Pi and type:
sudo i2cdetect -y 1
to check if the Raspberry Pi can detect the sensor.
You will see something like this:
0 1 2 3 4 5 6 7 8 9 a b c d e f
00: -- -- -- -- -- -- -- -- -- -- -- -- --
10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
50: -- -- -- -- -- -- -- 57 -- -- -- -- -- -- -- --
60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
70: -- -- -- -- -- -- -- --
This means two things.
- The sensor is detected.
- Communication with the sensor should be on channel
1
, address0x57
.