Using arduino uno with honeywell humidity sensor

void setup(void)
{
    Serial.begin(9600);
    Wire.begin();
    pinMode(11, OUTPUT); //Sensor is powered off of pin 11
    analogWrite(11, 255);
    write_word(0xa0, 0x0000);  // Enter command mode within 3ms
}