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))
HIGHinto0x1andLOWinto0x0for you. – cortices Aug 15 '15 at 01:23