Currently `sendBytes()` [returns various integers](https://github.com/TheThingsNetwork/arduino-device-lib/blob/master/docs/TheThingsNetwork.md#method-sendbytes) as success/error codes. We should provide defines so that the user don't need to know the exact integer. ```c #define TTN_ERROR_COMMANDFAILED -1 // etc ``` It would be nice to also have an enum with these values so that we can be clear on what the method can return.