Advertisement
RuiViana

Untitled

Aug 14th, 2015
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. //------------------------------- setup -----------------------
  2. void setup(void) {
  3. Serial.begin(9600);
  4. }
  5. //------------------------------- draw -----------------------
  6. void draw(float t)
  7. {
  8. Serial.println(t);
  9. }
  10. //-------------------------------------- loop ---------------------------
  11. void loop() {
  12.  
  13. float t = 128.5;
  14. draw(t);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement