temperatura, MSP430, Programy
[ Pobierz całość w formacie PDF ]
#include "io430.h"#include "stdlib.h"#include "math.h"#include "wyswietlacz.h"#define LCD_DIR P2DIR#define LCD_OUT P2OUT#define LED1 BIT0#define LED2 BIT6#define LED_DIR P1DIR#define LED_OUT P1OUTvoid main (void){// Stop watchdog timer to prevent time out resetWDTCTL = WDTPW + WDTHOLD;LCD_DIR=255;P2SEL=0;ADC10CTL0 = ADC10SHT_2 + ADC10ON + ADC10IE; // ADC10ON, interrupt enabledADC10CTL1 = INCH_1; // input A1ADC10AE0 |= BIT1; // PA.1 ADC option selectP1DIR |= BIT0; // Set P1.0 to output directionchar c;InitLCD();LCDPrintString("temperatura:");c='0';LCDSetPosition(0,15);c='C';SendByte(c);for (;;){ADC10CTL0 |= ENC + ADC10SC; // Sampling and conversion start__bis_SR_register(CPUOFF + GIE); // LPM0, ADC10_ISR will force exitif (ADC10MEM < 512)P1OUT |= LED1; // Clear P1.0 LED offelseP1OUT &=~ LED1; // Set P1.0 LED onc=128;for(int i=0; i<ADC10MEM/128;i++)c=c>>1;c=~c;LCD_OUT=c;LCDSetPosition(1,18);c=ADC10MEM/1000+48;SendByte(c);LCDSetPosition(0,12);c=ADC10MEM%1000/100+48;SendByte(c);LCDSetPosition(1,19);c=ADC10MEM%100/10+48;SendByte(c);LCDSetPosition(0,13);c=ADC10MEM%10+48;SendByte(c);}}//ADC10 interrupt service routine#pragma vector=ADC10_VECTOR__interrupt void ADC10_ISR (void){__bic_SR_register_on_exit(CPUOFF); // Return to active mode}
[ Pobierz całość w formacie PDF ]