How do I use this library?

hydrolisk1792:

    delayMicroseconds(.200);

digitalWrite(reset_pin, HIGH);
    delayMicroseconds(.100);

The type of the parameter of delayMicroseconds() is unsigned int so that code is the equivalent of:

    delayMicroseconds(0);
    digitalWrite(reset_pin, HIGH);
    delayMicroseconds(0);