define constant with two hex values, and naming arrays?

#define is just a simple text-replace macro.

This code:

#define something 0x01
//....
void loop() {
   Serial.println(something);
}

Is equivilant to:

void loop() {
   Serial.println(0x01);
]