
Indian_villager
Members-
Content Count
8 -
Joined
-
Last visited
Everything posted by Indian_villager
-
.....Well then. I am at a loss.
-
I've already seen that and it is what I have been using, what I think the issue is, is that the G2452 does not have an onboard UART. I am hoping that someone can confirm or deny. Regards, Alex J
-
After a bit of digging I have found 2 issues. The LM35 needs a minimum of 4V so I dont think the rail is waking it up. Also the chip I have does not have a proper Hardware UART setup, so I think I am going to have to switch up to a the G2553. Any thoughts? Ref: https://github.com/energia/Energia/wiki/Serial-Communication#wiki-Hardware_UART_on_Launchpad_14 Regards, Alex J
-
So here is something screwy. When I try to use pins 4 or 5 as the input i see random outputs when I use 15 or 14 the temp read 0C or 32F...... I have no idea what is going on. I checked my lines and I dont have anything shorted. FYI I am using a MSP430G2452 Regards, Alex J
-
Hey all, I'm relatively new to all this and I have been trying to get a temperature sensor to work with the launchpad. As in my previous posts I was trying for the DS18b20. I have the port of the code project on the back burner because there is a hell of a lot I need to learn to be able to port that over. So just to get something off the ground I have been trying to use the LM35 to read some temps. Here is the code I'm running float tempC; float tempF; void setup() { Serial.begin(9600); } void loop() { tempC = analogRead(6); //read the value from the se
-
SOLVED! DHT22 Temp & RH% One-Wire Sensor on Energia
Indian_villager replied to Rei Vilo's topic in Energia - MSP
Is there a potential to modify this library for the DS18b20? I am way new to the microcontroller scene. I'm not asking anyone to simply solve this for me, a point in the direction to start would be good enough. I plan on looking at the arduino library to get things moving, but my knowledge of programming is limted so I will be pestering yall for help. -
Holy Cats it worked! Thanks!
-
Hello there. I'm new to the whole programming bit and I was hoping to use this project to get started. I originally had an arduino in mind but saw the MSP430 and opted for it. I am attempting to get this boat off the shore by using the energia interface. I am on windows 7 and am running into this issue when I try to upload the blink sketch to the MSP430g2231 "C:\Users\(MY NAME)\Desktop\Energia\Energi~1|Hardware\Tools\MSP430\Bin\MSP430-g++". CreateProcess error=2, The system cannot find the file specified. I checked that directory and the file is there. An help? Regards,