Lab: I2C Temperature Sensor Figure 1.1 Serial monitor displaying temperature data Code //Reads Temp from I2C temperature sensor and prints it on the serial port //Include Wire I2C library #include <Wire.h> int temp_address = 72; //1001000 written as decimal number void setup() { //Start serial communication at 9600 baud Serial.begin(9600); //Create a Wire object Wire.begin(); } void loop() { //Send a request //Start talking to the device at the specified address Wire.beginTransmission(temp_address); //Send a bit asking for register zero, the data register Wire.write(0); //Complete Transmission Wire.endTransmission(); //Read the temperature from the device //Request 1 Byte from the specified address Wire.requestFrom(temp_address, 1); //Wait for response while(Wire.available() == 0); //Get the temp and read it into a vari...