Is it ok to use
digitalWrite(pin, 1) instead of digitalWrite(pin, HIGH)
or
digitalWrite(pin, 0) instead of digitalWrite(pin, LOW)
I want it that way to make the coding lesser because I save values on EEPROM with 1's and 0's. So if I want to use EEPROM value, I can call it this way
digitalWrite(pin, EEPROM.read(1))