Thank you for the quick reply!
So my next question is: Could you direct me to how/where I could change that to a different RX?
-Mike
Search found 8 matches
- Fri May 25, 2012 11:29 pm
- Forum: Connecting elements
- Topic: BTserial, which serial pins on mega? rx1, 2, 3 or 4?
- Replies: 5
- Views: 3436
- Fri May 25, 2012 9:18 pm
- Forum: Connecting elements
- Topic: BTserial, which serial pins on mega? rx1, 2, 3 or 4?
- Replies: 5
- Views: 3436
BTserial, which serial pins on mega? rx1, 2, 3 or 4?
When attaching a bluetooth module to run the bluetooth control app (initializing BTserial), what rx/tx pins do I need to use on the mega?
-Mike
-Mike
- Mon Apr 30, 2012 3:06 am
- Forum: Connecting elements
- Topic: Controlling without a standard transmitter?
- Replies: 8
- Views: 4501
Re: Controlling without a standard transmitter?
So if I am reading everything correctly, it looks like the serial data that the multiwii bt code is looking to receive is a 5bit serial stream that looks something like: byte Array[5] = {'k', yaw, pitch, roll, aux1} int i; for (i = 0; i < 5; i = i + 1) { Serial.write(Array[i]); } Any ideas? -Mike
- Sat Apr 28, 2012 11:41 pm
- Forum: Connecting elements
- Topic: Controlling without a standard transmitter?
- Replies: 8
- Views: 4501
Re: Controlling without a standard transmitter?
MadManMike wrote:huh, I didn't see it. I will check again.
Blahh! I downloaded the dev code (and it's not there), just downloaded 2.0 and found it. Thanks man.
-Mike
- Sat Apr 28, 2012 11:23 pm
- Forum: Connecting elements
- Topic: Controlling without a standard transmitter?
- Replies: 8
- Views: 4501
Re: Controlling without a standard transmitter?
huh, I didn't see it. I will check again.
- Sat Apr 28, 2012 11:15 pm
- Forum: Connecting elements
- Topic: Controlling without a standard transmitter?
- Replies: 8
- Views: 4501
Re: Controlling without a standard transmitter?
I see thanks.
So the code that you posted above, where does that go? You said serial input can be implemented in the existing annexcode()? So do i paste it in there?
-Mike
So the code that you posted above, where does that go? You said serial input can be implemented in the existing annexcode()? So do i paste it in there?
-Mike
- Sat Apr 28, 2012 9:04 pm
- Forum: Connecting elements
- Topic: Controlling without a standard transmitter?
- Replies: 8
- Views: 4501
Re: Controlling without a standard transmitter?
Is the data that goes in there just standard servo pwm from 0-256?
-Mike
-Mike
- Sat Apr 28, 2012 8:49 pm
- Forum: Connecting elements
- Topic: Controlling without a standard transmitter?
- Replies: 8
- Views: 4501
Controlling without a standard transmitter?
Hey Guys, So I have been implementing the multiwii code on a custom quadcopter for a school project. However, we are a bit stuck when it comes to the tx/rx part of the code. You see we do not plan to use a standard transmitter and receiver for this project, but rather we plan to use an xbee hooked u...