Advertisement
Guest User

Untitled

a guest
Aug 4th, 2015
570
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.23 KB | None | 0 0
  1. void loop()
  2. {
  3.     // blah blah code here
  4.  
  5.     nRF905_interrupts_off();
  6.  
  7.     // Do ethernet stuff
  8.     if (client.available())
  9.     {
  10.         char c = client.read();
  11.         Serial.print(c);
  12.     }
  13.  
  14.     nRF905_interrupts_on();
  15.  
  16.     // blah blah more code here
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement