Advertisement
Guest User

Untitled

a guest
Dec 17th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim)
  2. {
  3. if(htim->Instance == TIM9){
  4. if(licznik>4)
  5. {
  6. int temp = sekundink;
  7. licznik = 1;
  8. }
  9. WyswietlLiczbe(temp%10,licznik);
  10. temp /= 10;
  11. ZerujLicznik();
  12. licznik++;
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement