C 70
Select and Start AVR By Hightechrobo on 26th February 2025 08:15:23 PM
  1.  
  2. #include <mega32.h>
  3. #include <alcd.h>
  4. #include <delay.h>
  5. #include <stdio.h>
  6. ///////////////////////////////
  7. #define led_DDR 0b00001111
  8. #define led_1   0b00000001
  9. #define led_2   0b00000010
  10. #define led_3   0b00000100
  11. #define led_4   0b00001000
  12. #define led_off 0b00000000
  13. /////////////////////////////
  14. #define button_P 0b00000011
  15. /////////////////////////////
  16. const unsigned char digit[10] = {0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f}     ;
  17.  
  18.  
  19. enum Order{
  20.     main_menu,
  21.     active,      
  22. }  ;
  23.  
  24.  
  25. void main(void)
  26. {
  27. int t_b1=0 , t_b2=0;    // Button Timing
  28. unsigned int select = 1;
  29. char str[16];
  30.  
  31. enum Order Menu;
  32. // Alphanumeric LCD initialization
  33. // Connections are specified in the
  34. // Project|Configure|C Compiler|Libraries|Alphanumeric LCD menu:
  35. // RS - PORTA Bit 0
  36. // RD - PORTA Bit 1
  37. // EN - PORTA Bit 2
  38. // D4 - PORTA Bit 4
  39. // D5 - PORTA Bit 5
  40. // D6 - PORTA Bit 6
  41. // D7 - PORTA Bit 7
  42. // Characters/line: 16
  43. lcd_init(16);
  44.  
  45.  
  46. DDRB = 0x00;
  47. PORTB = button_P;
  48.  
  49. DDRC = led_DDR;
  50.  
  51. DDRD = 0xff;
  52.  
  53. Menu = main_menu;
  54.  
  55. while (1)
  56.       {
  57.       /////////////////////timing
  58.       delay_ms(1);
  59.       t_b1 ++;
  60.       t_b2 ++;
  61.       ////////////////////timing
  62.          
  63.       switch (Menu)
  64.       {
  65.      
  66.       //////////////////////////////////////////////////////////main Menu
  67.       case main_menu:
  68.        
  69.          if(select <= 2) /////main Menu graphic
  70.          {
  71.             lcd_gotoxy(0,0);
  72.             lcd_puts("Led-1");
  73.             lcd_gotoxy(0,1);
  74.             lcd_puts("Led-2");
  75.          }
  76.          else if(select <= 4)
  77.          {
  78.             lcd_gotoxy(0,0);
  79.             lcd_puts("Led-3");
  80.             lcd_gotoxy(0,1);
  81.             lcd_puts("Led-4");
  82.          }
  83.          else
  84.             select = 1 ;
  85.          
  86.          
  87.          
  88.          switch (select)
  89.          {
  90.             case 1:
  91.                 lcd_gotoxy(13,0);
  92.                 lcd_puts("<=");
  93.             break;
  94.             case 2:
  95.                 lcd_gotoxy(13,1);
  96.                 lcd_puts("<=");
  97.             break;
  98.             case 3:
  99.                 lcd_gotoxy(13,0);
  100.                 lcd_puts("<=");
  101.             break;
  102.             case 4:
  103.                 lcd_gotoxy(13,1);
  104.                 lcd_puts("<=");
  105.             break;
  106.            
  107.          }
  108.          /////////main Menu graphic
  109.          
  110.          
  111.          if( (PINB & 1 ) == 0 && t_b1 > 199 ) /////// Select Button
  112.          {
  113.             select ++ ;
  114.             lcd_clear();
  115.             t_b1 = 0;
  116.          }
  117.          if( (PINB & 2  ) == 0 && t_b2 > 199 ) //////Enter Button
  118.          {
  119.             Menu = active;
  120.             lcd_clear();
  121.             t_b2 = 0;
  122.          }  
  123.          
  124.          //////defalt settings
  125.          PORTD = 0x40 ;  
  126.          PORTC = 0x00 ;
  127.          break;
  128.           //////////////////////////////////////////////////////////end main Menu    
  129.          
  130.          ///////////////////////////////////////////////////////////Activate
  131.          case active:
  132.             PORTD = digit[select];
  133.            
  134.             switch (select)
  135.                 {
  136.                     case 1:  
  137.                         PORTC = 0x01;
  138.                     break;
  139.                     case 2:  
  140.                         PORTC = 0x02;
  141.                     break;
  142.                     case 3:  
  143.                         PORTC = 0x04;
  144.                     break;
  145.                     case 4:  
  146.                         PORTC = 0x08;
  147.                     break;
  148.                 }
  149.            
  150.             sprintf(str,"Led %d is ON",select);
  151.             lcd_gotoxy(0,0);
  152.             lcd_puts(str);
  153.            
  154.          if( (PINB & 2  ) == 0 && t_b2 > 199 ) //////back Button
  155.          {
  156.             Menu = main_menu;
  157.             lcd_clear();
  158.             t_b2 = 0;
  159.          }  
  160.          break;  
  161.          ////////////////////////////////////////////////////end Activate
  162.            
  163.            
  164.       }
  165.     }
  166.      
  167. }

Hightechrobo bin is for source code and general debugging text.

Login or Register to edit, delete and keep track of your pastes and more.

Raw Paste

Login or Register to edit or fork this paste. It's free.