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 vinay shabad

  1. V

    E- ink display driver

    can we use E-ink display driver with I2C protocol
  2. V

    I2C interfacing problem reading data from sensor

    yes i connected pullup resistors to SDA and SCL,yes i obtain result by simulating but its not the right values
  3. V

    I2C interfacing problem reading data from sensor

    i am using SHT21 with PIC2416KA102 and using C_30 compiler ---------- Post added at 17:29 ---------- Previous post was at 17:08 ---------- i am using I2C with interrupts ,i able to display some values but its not correct values
  4. V

    I2C interfacing problem reading data from sensor

    hii guys, i am working on I2C with sht sensor today with my programming i am able to display some values but i am not sure that it is from sensor and the radings are change per each cycle #include <P24F16KA102.h> #include "shtI2C.h" #include "display.h" #include "stdio.h" #define sht21...
  5. V

    invalid operands to binary >>

    float fsxhumi,i gussed it hex nd tried with it i am notgetting error but it is not showing output
  6. V

    invalid operands to binary >>

    i tried to use your code with fsxhumi= ((21965 * humidumm) /0h80000) - 46850; but it is showing error: invalid suffix "h80000" on integer constant ---------- Post added at 13:41 ---------- Previous post was at 13:39 ---------- yes i tried with the second one fsxhumi= ((21965 *...
  7. V

    invalid operands to binary >>

    int humidum; humidum &= ~(0x0003); fsxhumi= ((21965) * humidumm) >> 13 - 46850; if (fsxhumi < 0) { fsxhumi = -fsxhumi; DisplaySign = 1; } else DisplaySign = 0; if (fsxhumi < 100) { DigitPointSegEnable = 1; fsxhumi = fsxhumi*100; } else { DigitPointSegEnable = 0; }...
  8. V

    invalid operands to binary >>

    can someone help me i am getting the following error humidum &= ~(0x0003); return ((21965 * humidumm) >> 13) - 46850; do i need to add any special headers for using this
  9. V

    problem with I2C need help urgently

    no i am not getting
  10. V

    problem with I2C need help urgently

    during debugging programme is running successfully but i am anable to see any values on display ---------- Post added at 14:32 ---------- Previous post was at 14:31 ---------- yes i see ack nd programme is running with out any error but i cant see any values on display
  11. V

    problem with I2C need help urgently

    yes i am using PICKIT3 programmer with C30 compiler
  12. V

    problem with I2C need help urgently

    yes i am using pull up resistors i am unable to read data from sensor
  13. V

    problem with I2C need help urgently

    hiii everyone, i am working on SHT21 sensor using I2C i am unable to read the values from sensor please need help where i am going wrong ,correct my programme .It will be very help full if u have any code or suggestion to work on here is my code #include <P24F16KA102.h> #include "I2CM1.h"...
  14. V

    I2C questions for PIC

    hiii guys my program is with c30 compiler but i hope it will help u #include <P24F16KA102.h> #include "I2CM1.h" void initI2CportSHT2X() { TRISBbits.TRISB5 = 1; // Digital Output (make it input only when reading data. see spi) // PORTBbits.RB5 = 1; TRISBbits.TRISB6 = 1...
  15. V

    cannot read values from sensor with I2C

    hiii i am working on PIC24F ,i am trying to read a temperature value fom sensor with I2C with the following program can any one please suggest me where i am wrong and how to do #include <P24F16KA102.h> #include "I2CM1.h" void initI2CportSHT21(){ TRISBbits.TRISB5 = 1; // Digital...

Part and Inventory Search

Back
Top