-
Content Count
55 -
Joined
-
Last visited
-
Days Won
2
Posts posted by SirPatrick
-
-
Haha I ordered five as well. I bet they saw a jump in sales. What if it is just a marketing gag?
-
Sure we can help, but first we need to know more about the problem. Some helpful things would be
- Code you are working with
- More information on the ECG and how you are getting the data to the msp430 (serial.SPI,etc)
- Any schematics / wiring diagrams
Once you give us that we can start assisting.
-
I can help with the assembling. Talking to Elecrow with Cube's help to have them assemble and manufacture boards for us. Yes.. but we need help with code.
If anyone us volunteering, we can give them a board OR maybe pay for their prepaid SIM for a fixed amount.
Put me in for assembling some boards. I solder a bunch of stuff for work, so I have all the tools needed.
-
I might take a shot at trying to help out on the software/shield design. To ge it started here are some helpful links:
and
-
What awesome timing. I just bought a small gokart engine and am working on an ECU/ fuel injection system. So far I have two temperature sensors reading oil temp and engine block temp. Working on an oxygen sensor next. This sounds like a pretty cool project. If I can fork out enough moolah/ time I would mess with it.
-
That would be cool to see this on the blog!
-
Best I could do this morning. After school / work I will upload some more code and pictures. http://i.imgur.com/r2J5kqO.jpg
-
I found a post on the TI E2E community asking questions about the LCD on the educational boosterpack. Someone posted some code for energia and it worked perfect. I took the code and "translated" it to non energia. Here is the forum post. Also here is documentation for the LCD itself from the manufacturer website (PDF). Right now this code prints "hello 43oh.com" . I am going to play with it more later tomorrow. If it is messy code I apoligize, long day at school work in addition to getting use to this platform..
-
Fixed the private thing. Not sure how that happened.
-
Glad you are feeling better spoil, It is always good to get back to the hacking! Anywhoo, a few notes about your code. You shouldn't waste your time with writing the hexadecimal representations of the pins, instead use the predefined names (BIT0,BIT1,BIT2..etc). Also look into using boolean operators NOT,AND,XOR etc.
To to turn on BIT1 on port 1 you can do
P1OUT |= BIT1;
Then to turn BIT1 off you would do
P1OUT &= ~(BIT1);
If you are toggling a bit inside of loop you can XOR it instead of explicitly turning it on and then off.
P1OUT ^= BIT1;
-
I have been working on a few different projects that could be described as wireless sensor nodes. Just to get something working I decided to hack a retail router to give my MSP430 wireless capabilities. The first step was to install OpenWRT Linux onto the router to make it configurable. After that I mounted the file system onto a flash drive that was using the built in USB port on the router. From there I broke out the convenient 3.3v serial connection and hooked it up to my MSP430. Currently I am working on a full write up that will include compiling OpenWRT from source and detailed step by step instructions to install all the needed packages. I am also finishing up some scripts that should automate the hard stuff and give your launchpad a wireless connection in no time.
Decided I would add some some pictures and examples for everyone to look at while I finish the write up / automation scripts. This is by no means a finished or polished project.
Here is a link to the Imgur album with short descriptions.
And here is a video of me using the wireless capabilities to trigger a relay. I will update this post when I finish everything else.
http://www.youtube.com/watch?v=aU0LfrJBSKE
-
Do you have the code working for that, or would you like some examples?
-
Spoil9, here is a great post on controlling single servos all the way up to 8 servos using potentiometer and the ADC.
http://forum.43oh.com/topic/252-launchpad-controlling-up-to-8-rc-servos/
Here is some code from my snippet library. When I find the website that I got it from I will make sure to update.
-
Spoil9, "stop the dog" means stopping the MSP430's watchdog timer. Check out this link on the various MSP430 timers, including the watchdog. http://www.ti.com/lit/ml/slap113/slap113.pdf
-
I am a big fan of using solid state relays when switching bigger loads from my MCU. Besides that though you can use FETS or just some heavy duty transistors
-
Sorry about the late post of my secret santa gift, I worked late last night and slept in haha. Abecedarian gifted me essentially a bundle of useful items that I am excited to have. He also took the time to write a small note which I appreciated.
- cubeberg, abecedarian and bluehash
-
3
-
I am really glad you like it abecedarian. I read somewhere in your comments you wanted to work on something RFID based. Happy holidays!
-
School and work like always. -sigh-
-
Is it too late to get some of these?
-
Sounds fun! I'm game.
-
Here is a snippet of code that waits a certain amount of time and then toggles a digital output pin
To make this code start on a button press just initially configure the time to be stopped (MC_0). Then in your button ISR do TACTL |= MC_1; -
I have an iPhone and iPad. I do some app development for the company I am with
-
I have always wanted to make a bluetooth vitals kit that has a few types of medical sensors like (blood pressure, heart rate, etc). For a freshman engineering course we had to come up with a concept and mine was a low cost low power bluetooth enabled vitals kit that police / military would use. When any of the parameters would become irregular it would send the information to emergency services, medical officers, etc. This combined with GPS coordinates would give a real time overview of where medical services need to be concentrated.
-
If the circuit is all hooked up the code is the easiest part. All you will be doing is toggling a pin on/off. So any blink example would work, instead of hooking it up to the LED you will hook it up to the base of the transistor.
Here is an example of toggling a pin based on a timer. I used this to control a solid state relay every few seconds.
Hello from Raleigh, North Carolina
in New users say Hi!
Posted
Welcome! Looking forward to see what kind of projets you can think up