Guest User

Untitled

a guest
Jan 23rd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1.  
  2. teplota_vody = get_teplota_vody();
  3.  
  4. if( teplota_vody > 60 )
  5. {
  6. do{
  7. release_watter_into_circle();
  8. teplota_vody = get_teplota_vody();
  9. }while( teplota_vody > 60 );
  10. }
  11. else
  12. {
  13. spirala_enable();
  14.  
  15. time_start = get_current_time();
  16.  
  17. do{
  18. teplota_vody = get_teplota_vody();
  19. }while( teplota_vody < 75 );
  20.  
  21. time_stop = get_current_time();
  22.  
  23. spirala_disable();
  24.  
  25. save_time_for_heated_watter( time_stop - time_start );
  26. }
  27.  
  28. end();
Add Comment
Please, Sign In to add comment