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 bongabobo1

  1. B

    SHT31D calculation problem

    Good day all This is the calculation I tried so far from the datasheet but it gives me only one value and it doesnot change even if I put heat on the sensor, I am almost done please help. #include <stdio.h> #include <stdlib.h> //helpful types #define bool unsigned char #define false 0...
  2. B

    BMP280 failing to displays pressure value on lcd screen

    Thanks for your reply .I am new in C language ,what are code tags? It only displays 4hPa for pressure but for temperature nothing but my code seems to be fine I am not an expect to code review since I am new but I tried to follow the datasheet and other documents.
  3. B

    SHT31D calculation problem

    Thanks for your reply, the code does not display anything on the Lcd screen which I don't know my calculation is wrong or what ..i need help on the calculation part so I can display it on the screen since I am new to C language I tried my best to reach this level as for I2C sensor but now I am...
  4. B

    SHT31D calculation problem

    Do I have to change from pTemperature = (tempMsb << 8) + tempLsb; to pTemperature = ((unsigned short)tempMsb << 8) + tempLsb; on my code??
  5. B

    SHT31D calculation problem

    It does not display anything on the lcd screen which I don't know why since I did the calculation for the temperature ,I don't know if its the right way or I am wrong .
  6. B

    SHT31D calculation problem

    Good day this is my code for sht31d but mm failing to do the right calculation in order to display the humidity and temperature value please help #include <stdio.h> #include <stdlib.h> //helpful types #define bool unsigned char #define false 0 #define true 1 #define byte unsigned char //I2C...
  7. B

    BMP280 failing to displays pressure value on lcd screen

    Good day this is my code for bmp280 but its failing to display the value of the pressure #include <stdint.h> #if !defined BMP280_I2C1 && !defined BMP280_I2C2 #define BMP280_I2C1 #endif #if defined BMP280_I2C1 && defined BMP280_I2C2 #undef BMP280_I2C2 #endif #ifdef BMP280_I2C1 #define...

Part and Inventory Search

Back
Top