Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. basic.forever(function () {
  2. if (input.temperature() >= 0 && input.temperature() <= 25) {
  3. basic.showString("cool")
  4. basic.showIcon(IconNames.Heart)
  5. } else if (input.temperature() >= 40) {
  6. basic.showString("hot")
  7. } else if (input.temperature() <= 0) {
  8. basic.showString("Freeze")
  9. basic.showIcon(IconNames.Happy)
  10. } else {
  11.  
  12. }
  13. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement