bonjour a tous,
mon objectif et en appuyant sur un bouton poussoir d'allumer une led via un microcontroleur (PIC16F1508)
voici mon code
RB6 est relié a une led , et j'ai mis une alimentation de 5v relié au bouton poussoir qui est relié a l'entré RA2 ( donc quand j’appuie sur le bouton RA2 =1)Code:#include <xc.h> #include <stdlib.h> // CONFIG1 #pragma config FOSC = INTOSC // Oscillator Selection (INTOSC oscillator: I/O function on CLKIN pin) #pragma config WDTE = OFF // Watchdog Timer Enable (WDT disabled) on=LATB7 avec off=RB7 #pragma config PWRTE = ON // Power-up Timer Enable (PWRT enabled) #pragma config MCLRE = OFF // MCLR Pin Function Select (MCLR/VPP pin function is digital input) #pragma config CP = OFF // Flash Program Memory Code Protection (Program memory code protection is disabled) #pragma config BOREN = ON // Brown-out Reset Enable (Brown-out Reset enabled) #pragma config CLKOUTEN = OFF // Clock Out Enable (CLKOUT function is disabled. I/O or oscillator function on the CLKOUT pin) #pragma config IESO = OFF // Internal/External Switchover (Internal/External Switchover mode is disabled) #pragma config FCMEN = OFF // Fail-Safe Clock Monitor Enable (Fail-Safe Clock Monitor is disabled) // CONFIG2 #pragma config WRT = OFF // Flash Memory Self-Write Protection (Write protection off) #pragma config STVREN = ON // Stack Overflow/Underflow Reset Enable (Stack Overflow or Underflow will cause a Reset) #pragma config BORV = LO // Brown-out Reset Voltage Selection (Brown-out Reset Voltage (Vbor), low trip point selected.) #pragma config LVP = OFF // Low-Voltage Programming Enable (High-voltage on MCLR/VPP #ifndef _XTAL_FREQ #define _XTAL_FREQ 16000000 #endif void init_pic() { OSCCON = 0b01111010; //horloge interne reglé a 16MHz ANSELA=0; //numerique TRISA=0b00100100; // RA2 et RA5 en entrés PORTA=0x00; // toutes les sorties a 0 ANSELB=0; // numerique TRISB=0x00; // tout en sortie PORTB=0x00; // toutes les sorties a 0 } void main() { init_pic(); while(1) { if(RA2==1)RB6=1; else RB6=0; } }
le probleme est des que je lance le code ma led est allumé sans que j'appuie sur le bouton poussoir
donc ma led est allumée alors que RA2=0 et je ne comprend pas pourquoi
merci d'avance de votre aide
pour info j'utilise comme compilateur MPLABX
-----