Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1.  void SendFloatToLocation(uint8_t x_coord, uint8_t y_coord, double number)
  2.  {
  3.      char string[15];
  4.      sprintf(string, "%.8lf", number);
  5.      GoToLocation(x_coord, y_coord);
  6.      SendString(string);
  7.  }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement