Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //------------------------------- setup -----------------------
- void setup(void) {
- Serial.begin(9600);
- }
- //------------------------------- draw -----------------------
- void draw(float t)
- {
- Serial.println(t);
- }
- //-------------------------------------- loop ---------------------------
- void loop() {
- float t = 128.5;
- draw(t);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement