Advertisement
kknndd_

Untitled

Jun 10th, 2021 (edited)
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.23 KB | None | 0 0
  1. // Online C compiler to run C program online
  2. #include <stdio.h>
  3.  
  4. #define max_kol 10
  5.  
  6. int main() {
  7.    
  8.     // pin mode
  9.    
  10.     int pocet_kol = 0;
  11.    
  12.     for (;pocet_kol <  max_kol; pocet_kol++){
  13.        
  14.         int stlaceny_enter = ananogRead(A0);
  15.         int hodnota_tlacidlo = 0;
  16.         int input[] = {0,0,0,0};
  17.        
  18.         while (stlaceny_enter < 1000){
  19.            
  20.             // tlacidlo 1, vstup > D2
  21.            
  22.             if (digitalRead(2) == HIGH){
  23.                
  24.                 honota_tlacidlo = digitalRead(2);
  25.                
  26.                 while(honota_tlacidlo == HIGH){
  27.                     honota_tlacidlo = digitalRead(2);
  28.                     delay(99);
  29.                 }
  30.                
  31.                 input[0]++;
  32.                
  33.                 if(input[0] > 9){
  34.                     input[0] = 0;
  35.                 }
  36.                
  37.             }
  38.            
  39.             // tlacidlo 2, VSTUP > D3
  40.             // tlacidlo 3, VSTUP > D4
  41.             // tlacidlo 4, VSTUP > D5
  42.            
  43.             stlaceny_enter = ananogRead(A0);
  44.             delay(100);
  45.            
  46.         }
  47.        
  48.     }
  49.    
  50.     // Write C code here
  51.     printf("Hello world");
  52.    
  53.     return 0;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement