Skip to content

Instantly share code, notes, and snippets.

@AntonMeier
Created October 17, 2019 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AntonMeier/d1103be62afc198a93317ef1729dc4be to your computer and use it in GitHub Desktop.
Save AntonMeier/d1103be62afc198a93317ef1729dc4be to your computer and use it in GitHub Desktop.
- (void)buttonDidConnect:(FLICButton *)button;
{
NSLog(@"Did connect Flic: %@", button.name);
}
- (void)button:(FLICButton *)button didDisconnectWithError:(NSError *)error;
{
NSLog(@"Did disconnect Flic: %@", button.name);
}
- (void)button:(FLICButton *)button didReceiveButtonClick:(BOOL)queued age:(NSInteger)age;
{
NSLog(@"Flic: %@ was clicked", button.name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment