I am a complete newbie with digital electronics, and I decided it was time to learn something new.
I got an Arduino with a temperature and humidity sensor (SHT15, datasheet
here).
I thought that figuring how the sensor communicates with the microcontroller could be a good learning opportunity, so I took my scope and tried to see if I could identify the various communication steps described in the datasheet. And here is the problem: I think I am not triggering the oscilloscope correctly, and I have not been able to figure out how to show the signal properly.
With a pulse width trigger set to 10us over a time span of one second, I get three pulses (in yellow the serial clock, in blue the data, first image attached) which look nothing like in the datasheet, although I figured the first one is to retrieve the temperature data, the second to retrieve humidity, and the third one again temperture (the third one is called from the humidity function in the library for the SHT15, because humidity values need to be adjusted taking into account temperature). I also figured that, with the 1s span, the sampling per second is not large enough to show any waveforms at the frequencies of the clock/data.
With the same pulse width trigger set to 10us, over a time span of 1us I get something that seems the same as the first line in Fig. 17 in the datasheet: I can see the transmission start command, the '000' address, and the '00011' sequence indicating that the temperature measurement and, I believe, the ACK.
However, I am not able to visualize the entirety of the trasmission: I can't visualize the data actually transmitted, the CRC-8 Checksum and all the other parts shown in Fig. 17. I am also not able to trigger on the humidity transmission either nor on the second call for temperature data transmission. What I see is just nothing. (2nd and 3rd images attached).
What am I doing wrong? How can I visualize the entire span of bits?

Thank you!
Mattia