Advertisement
Guest User

Untitled

a guest
Dec 16th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. class MySecurity : public BLESecurityCallbacks {
  2.  
  3. uint32_t onPassKeyRequest(){
  4. return 123456;
  5. }
  6. void onPassKeyNotify(uint32_t pass_key){
  7.  
  8. }
  9. bool onSecurityRequest(){
  10. return true;
  11. }
  12. void onAuthenticationComplete(bool success){
  13.  
  14. }
  15. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement