Forum Replies Created
Viewing 4 posts - 1 through 4 (of 4 total)
-
AuthorPosts
-
sushant
ParticipantCODE VIII:#include <avr/io.h>BRiCSPage7#include <avr/interrupt.h>#include <util/delay.h>char status = 0,index = 0,lat[10] = ” “,lon[10] = ” “;char sat[2] = “**”,dop[4] = “****”,tim[6] = “******”;ISR(USART_RXC_vect){unsigned char c;c = UDR;if (c==’$’){status = 1;index = 0;}else if((index == 3)&(c != ‘G’)) status=0;else if((index == 4)&(c != ‘G’)) status=0;else if(index> 6 & index< 13)tim[(index- 7)]=c;else if(index>17 & index< 27)lat[(index-18)]=c;else if(index>30 & index< 40)lon[(index-31)]=c;else if(index>44 & index< 47)sat[(index-45)]=c;else if(index>46 & index< 51)dop[(index-47)]=c;if(status==1)index++;}int main(void) {set_uartbaud(9600);enable_uart_rxcint();LCDinit();LCDclr();sei();while (1) {_delay_ms(200);LCDGotoXY(0,0);LCDstring(lat,10);LCDstring(sat,2);LCDstring(dop,4);LCDGotoXY(0,1);LCDstring(lon,10);LCDstring(tim,6);}}March 31, 2013 at 4:20 am in reply to: problem occurs in getting value from input adc channel in atmega 16 #9399sushant
Participantuse folloing library file for ADC communication,
#include<avr/io.h>#include<adc_lib.h>#define ADC_VREF_TYPE 0x00// Read the AD conversion resultunsigned int read_adc(unsigned char adc_input){ADMUX=adc_input|ADC_VREF_TYPE;// Start the AD conversionADCSRA|=0x40;// Wait for the AD conversion to completewhile ((ADCSRA & 0x10)==0);ADCSRA|=0x10;return ADCW;}// header file//#include<avr/io.h>unsigned int read_adc(unsigned char);void ADCinit();void ADCinit(){ADMUX=ADC_VREF_TYPE;ADCSRA=0x85;}March 31, 2013 at 4:11 am in reply to: Can i use TTL based GSM sim 300 module for Atmega 8l (i need only to send msgs) #9398sushant
Participantyes u can use TTL based GSM modem, conncnnct microcontroller pin rx to GSM tx and microcontroller pin TX to GSM rx. and write the code for atmega8 and write the message in the code and you can eaisly send the message to any mobile no.
sushant
Participantuse any kind of programmer like usbtiny, USB asp .and use any sofware for transfering hex file in microcontroller like sinaprog, extreme burner..
-
AuthorPosts
Viewing 4 posts - 1 through 4 (of 4 total)