Page 52 - 완) I MDP 프로젝트 작품 보고서(전체과 1학년)1.6
P. 52

while(PINC.6);
                            PORTA.1  = 0;
                       }
                       //뒷문스위치
                       else if(PIND.1  ==  1)
                       {
                            PORTA.2  = 1;
                                    delay_ms(1000);
                            PORTA.2  = 0;
                                    delay_ms(3000);
                            PORTA.3  = 1;
                            while(PINC.7);
                            PORTA.3  = 0;
                       }
                       //패턴변경스위치
                       else if(PIND.2  ==  1)
                       {
                            for(i=0  ; i<4  ; i++)
                            {
                                 PORTD.7  = ~PORTD.7;
                                 PORTE =  ~PORTE;
                                            delay_ms(100);
                            }
                            changePassward();
                       }


                 }
            }





            <라즈베리PI>



            #include  <stdlib.h>
            #include  <nfc/nfc.h>
            #include  <wiringPi.h>
            #include  <string.h>
            #include  <stdio.h>


            #define  NFC_RIGHT  0
            #define  NFC_WRONG  2




                                                         -  45  -
   47   48   49   50   51   52   53   54   55   56   57