LesGrosman

IC Weather Station

Jan 24th, 2021 (edited)
669
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. alias WeatherStation d0
  2. alias Flash d1
  3. alias Siren d2
  4. alias LEDcounter d3
  5.  
  6. alias CountDown r0
  7. alias Storm r1
  8. define StormSoon 120
  9.  
  10. begin:
  11.  
  12. l CountDown WeatherStation NextWeatherEventTime
  13.  
  14. beqz CountDown switchoff
  15.  
  16. slt Storm CountDown StormSoon
  17. s Siren On Storm
  18. s Flash On Storm
  19. round CountDown CountDown
  20. s LEDcounter Setting CountDown
  21.  
  22. j begin
  23.  
  24. switchoff:
  25. s Siren On 0
  26. s Flash On 0
  27. j begin
Add Comment
Please, Sign In to add comment