Advertisement
Guest User

Untitled

a guest
Aug 30th, 2015
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. webFile = SD.open("index.htm");
  2. if (webFile) {
  3. while(webFile.available()) {
  4. client.write(webFile.read());
  5. }
  6. webFile.close();
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement