
Towhid
Members-
Content Count
25 -
Joined
-
Last visited
Everything posted by Towhid
-
Trouble Porting Arduino SD Card Library to Energia
Towhid replied to ryanf11's topic in Energia - MSP
i am using energia with msp432p401r launchpad...i have interfaced a sensor which is bosch bme 280 via i2c with the lauchpad and have showed the output via sharp lcd boosterpack...now i have to store the data which is temperature, pressure and humidity in a sd card ...can anyone help pleases ? -
Hello i have to add an external memory card (sd card ) with my msp432 launchpad ..i am using energia..I have interfaced an environmental sensor and have showed the output via sharp lcd boosterpack..now i have to store the data which is temperature , pressure and humidity to the sd card ...I have no clue how to do it ...can anyone help ??
-
Full SD-Card FatFS Elm-Chan module support for the MSP432 Launchpad
Towhid replied to bluehash's topic in Code vault
Hello I have interfaced Bosch BME 280 sensor via i2c with msp432p401r launchpad..and have displayed the output via 430 sharp96 lcd boosterpack..now I have to save the sensor output data to the internal memory... i just need to store temperature,pressure and humidity data ever 60 seconds..can anyone help ?? -
@@Rei Vilo i want to store it on flash memory..so that i can read the data even after the device is powered off
-
@@Rei Vilo I am doing a project under the supervision of a professor ...according to him first i should store the data in the internal memory then try storing it to a sd carad ...but do u think it would be easier storing the data in the sd card rather than storing it to the internal memory??
-
I have been able to show my sensor output via the lcd and the code is given below : #include <Wire.h> #include "SPI.h" #include "OneMsTaskTimer.h" #include "LCD_SharpBoosterPack_SPI.h" #define BME280_ADDRESS 0x76 unsigned long int hum_raw,temp_raw,pres_raw; signed long int t_fine; uint16_t dig_T1; int16_t dig_T2; int16_t dig_T3; uint16_t dig_P1; int16_t dig_P2; int16_t dig_P3; int16_t dig_P4; int16_t dig_P5; int16_t dig_P6; int16_t dig_P7; int16_t dig_P8; int16_t dig_P9; int8_t dig_H1; int16_t dig_H2; int8_t dig_H3; int16_t dig_H4; int16_t dig_H5; int8_t dig_H6
-
i want to store 3 data which are temperature, pressure,and humidity ..and i want to store it every 60 seconds ,,i want to read the data even after the device is powered off
-
Hello I have interfaced Bosch BME 280 sensor via i2c with msp432p401r launchpad..and have displayed the output via 430 sharp96 lcd boosterpack..now I have to save the sensor output data to the internal memory...can anyone help ??
-
this is the code that i have tried ..but no output on the lcd ... #include <Wire.h> #include "cactus_io_BME280_I2C.h" #include "SPI.h" #include "OneMsTaskTimer.h" #include "LCD_SharpBoosterPack_SPI.h" // Create BME280 object BME280_I2C bme; // I2C // Variables LCD_SharpBoosterPack_SPI myScreen; uint8_t k = 0; uint16_t count = 0; void setup() { Serial.begin(9600); Serial.println("Bosch BME280 Pressure - Humidity - Temp Sensor | cactus.io"); if (!bme.begin(0X76)) { Serial.println("Could not find a valid BME280 sensor, check wiring!"); while (1); myScreen.begin(); myScreen
-
@@energia ,yes i have tried the example ..it works fine
-
yes ..i have installed the xds driver...energia 17 works fine ..but i have problem running energia 16
-
Hello I have installed energia 16, i tried to run the example code with my launchpad msp432..but i get a error which says..the serial port does not exist or your board is not connected ..can anyone come up with a solution..
-
[Energia Library] Bosch BMP085 Template Library
Towhid replied to chicken's topic in MSP Energia Libraries
hello ...i am very new to this world...i have to interface bosch bme280 with msp432 launchpad...i have done 12c interface and have been able to see the output in serial monitor of energia ...i have a sharp lcd boosterpack and have to show the sensor output there but dont know how ..can anyone help ?? -
How can I interface Bosch BME280 shuttleboard with MSP432?
Towhid replied to Towhid's topic in Energia - MSP
is it possible to show the output of this sensor throug sharp lcd boosterpack ? -
I have interfaced Bosch BME 280 with my launchpad which is msp432 via i2c ..I am using energia ...I can see the output which is pressure, humidity and temperature through the serial monitor...now I have to show the output through this sharp lcd boosterpack...can anyone help ??
-
How can I interface Bosch BME280 shuttleboard with MSP432?
Towhid replied to Towhid's topic in Energia - MSP
i havent been able to run the code ... do I also need the sketech file ?..and where should i save it ?? -
How can I interface Bosch BME280 shuttleboard with MSP432?
Towhid replied to Towhid's topic in Energia - MSP
thank you Yosh I have tried the code from the link you have provided .. i tried it on Energia but it says error compiling... any suggestion ? -
yes ..I have
-
Hii I have a msp432 launchpad , i have installed energia and tried to run the example codes but i see the following message and cant run the examples.. the selected serial port does not exist or your board is not connected. I also have attached a screenshot can anyone help ??
-
Hello I have a msp432 launchpad and I have to interface it with Bosch BME 280 shuttleboard, I am not sure how to do it...ca anyone help please?? I have attached the shuttleboard flyer here...
-
hello ..I am a new user .. i have a msp4323p401r launchpad ..and i have to interface it with an SD card ...can anyone help ..please??
-
how do i interface an SD card with msp432p401r launchpad ?
-
How can I interface an SD card to msp432p401r launchpad ??
-
hello ..i am a new user ..i have an msp432p401r launchpad and i have to interface it with a 9 axis bosch sensor which bno 055..can anyone suggest how should i start ?