Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by aviraje8

  1. A

    Using 18f452 send/ receive sms to GSM A900 , mikroC

    unable to receive gsm using pic16 here is code plz help me someone unsigned char sms_in[80]; unsigned char dat[80]; bit flag; char i=0; char x; char mob2[12]; void interrupt() { if (PIR1.RCIF==1) { do { if (UART1_Data_Ready()) { sms_in[i] = UART1_Read(); i++...
  2. A

    Using 18f452 send/ receive sms to GSM A900 , mikroC

    But how to do this.I am confused
  3. A

    Using 18f452 send/ receive sms to GSM A900 , mikroC

    problem in gsm receive & control LED ON & OFF Hi here is my code.I am using sim900 & PIC16F876A. when message is received ON then led should be ON & when message is received OFF then led should be OFF signed char sms_in[90]; bit flag; char i=0; void interrupt() { if (PIR1.RCIF==1) {...
  4. A

    Using 18f452 send/ receive sms to GSM A900 , mikroC

    signed char sms_in[95]; bit flag; char i=0; void interrupt() { if (PIR1.RCIF==1) { if (UART1_Data_Ready()) { sms_in[i] = UART1_Read(); i++; if(i==88) { flag=1; } Suppose I received message like "+CMGR: \"REC UNREAD\",\"+919325457889\",\"\",\"2014/12/27...
  5. A

    hi unable to receive & turn on & off relay using pic16f876a plz help me

    hi i am using sim900 if i receive SMS ON the relay should be ON if i receive SMS OFF the relay should be OFF
  6. A

    hi unable to receive & turn on & off relay using pic16f876a plz help me

    unsigned char sms_in[90]; bit flag; unsigned int i=0; void interrupt() { if (PIR1.RCIF==1) { if (UART1_Data_Ready()) { sms_in[i] = UART1_Read(); if(sms_in[i]=='K') { flag=1; } i++; } } } void main() { INTCON.GIE = 1; INTCON.PEIE = 1...
  7. A

    Using 18f452 send/ receive sms to GSM A900 , mikroC

    I have same problem in receiving message, can anybody help me
  8. A

    [51] rtc ds1307 with 8051 can't update date & time after mains power switch on

    here is the code when power on the system it start displaying date & time,but when I turns power off then again turn on the power it displays initial value not updated value #include<reg51.h> void _nop_(void); #define delay_us _nop_(); //generates 1 microsecond #define LCD P0 sbit...
  9. A

    [SOLVED] I2C communication not able to recieve data .PIC 16f

    I2C communication not able to send and recieve data for PIC 18f4520 and 8051 I have simulated the code for i2c comm in proteus and microC. Im unable to send and receive data to the eeprom Please help me. I have written code like that write_data() { Soft_I2c_Start(); Soft_I2c_write(0xA0)...

Part and Inventory Search

Back
Top