Skip to content

Instantly share code, notes, and snippets.

@andrewbranch
Last active December 28, 2015 17:49
Show Gist options
  • Save andrewbranch/7538501 to your computer and use it in GitHub Desktop.
Save andrewbranch/7538501 to your computer and use it in GitHub Desktop.
SwitchaBLE Light State characteristic write codes
typedef NS_OPTIONS(NSInteger, LightState) {
LightStateOff = 0,
LightStateOn = 1 << 0,
LightStateToggle = 1 << 1,
LightStatePulse = 1 << 2,
LightStateStrobe = 1 << 3
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment