Mjx Bugs 3

More
23 Aug 2018 01:05 #70400 by C0ckpitvue 777
Replied by C0ckpitvue 777 on topic Mjx Bugs 3
The flip switch didn't work on my Bugs 8 pro on channel 7.The 8 pro also has acro mode,should I take captures for the bugs 8 pro?It flies on the b3 protocol but it definitely is limited.

Please Log in or Create an account to join the conversation.

More
23 Aug 2018 18:18 #70415 by JayDrone
Replied by JayDrone on topic Mjx Bugs 3
this video was with the older dfu file worked fine I flew recently and it worked fine

Please Log in or Create an account to join the conversation.

More
23 Aug 2018 19:23 #70417 by C0ckpitvue 777
Replied by C0ckpitvue 777 on topic Mjx Bugs 3
I'm talking about acro and automatic flips.

Please Log in or Create an account to join the conversation.

More
24 Aug 2018 00:37 - 24 Aug 2018 00:38 #70423 by hexfet
Replied by hexfet on topic Mjx Bugs 3

planger wrote: I've looked at the code and I'm puzzled about the need to launch the bind twice.
Please correct me if I'm wrong but it looks to me that you could be all set during the 1st bind sequence.

It would make it easier for the users since you don't need to delete all the digits of the fixed id (they are getting replaced by the latest bind) and you only have to launch 1 bind sequence to get a working model.

Pascal


Thanks Pascal. That's a good suggestion. I didn't look at simplifying the bind process after integrating mmakai's code for automatic rxid to radio_id setting.

Test build is updated (924dba7). Bind process is simplified to a) Select bugs3 protocol and click on Bind, b) Power on the receiver. The bind dialog will disappear when bind is successful. Don't edit the fixed id after binding :)
Last edit: 24 Aug 2018 00:38 by hexfet.

Please Log in or Create an account to join the conversation.

More
24 Aug 2018 21:49 #70436 by C0ckpitvue 777
Replied by C0ckpitvue 777 on topic Mjx Bugs 3
Hello everyone,hope everyone is doing well.I took captures of the bugs 8 pro in both angle mode and acro mode.The bugs 8 pro flies on the bugs 3 protocol but the voltage telemetry isn't correct because the 8 pro runs on 3s.The flip channels or values also must be different because the 8 doesn't flip on the assigned channel 7 but my b3 does.Also there are 2 different modes on the 8 pro angle and acro.In order to switch between modes you got to turn the b8 off to make this transition.I was hoping if someone fully deviated this is it possible to just switch between modes via 2 channels programmed to a switch instead of going through the former,any ways I gave it the full extent of my knowledge with the captures.if anybody is up to the challenge,here are the captures.

www.mediafire.com/file/r6v0pgfqvc37cbg/B...ro_Captures.zip/file

Please Log in or Create an account to join the conversation.

More
24 Aug 2018 21:58 #70437 by hexfet
Replied by hexfet on topic Mjx Bugs 3
C0ckpitvue, some captures for the functions that aren't working on the bugs 8 pro will be helpful.

According to the user manual I found online there is a hardware jumper that must be added to the receiver board to allow acro mode.

Please Log in or Create an account to join the conversation.

More
24 Aug 2018 22:17 - 28 Aug 2018 00:41 #70438 by C0ckpitvue 777
Replied by C0ckpitvue 777 on topic Mjx Bugs 3
Thank you hexfet,I took captures of the flips and the acro mode with the jumper enabled (plugged in).The jumper can be in place in both modes but has no effect in angle mode.The only other thing that I know is deficient from stock to deviation is the voltage telemetry,it's not so much absent it's just incorrect because it's an higher voltage than the b3.I tried to set it to 3s on the telemetry setup but it just beeps flashing 8.4 volts,I was thinking maybe the b3 protocol is enabling it to read over voltage.How can I take battery telemetry via captures?
Last edit: 28 Aug 2018 00:41 by C0ckpitvue 777.

Please Log in or Create an account to join the conversation.

More
24 Aug 2018 22:40 #70439 by hexfet
Replied by hexfet on topic Mjx Bugs 3
Nothing extra needed to capture the telemetry. It's all in the file.

The voltage telemetry will only ever read 8.4V or 6.0V because the bugs3 only sends a good/low indicator, and those are the two values I chose to represent "good" and "low". Maybe the bugs8 telemetry will be different.

Please Log in or Create an account to join the conversation.

More
27 Aug 2018 18:22 #70479 by hexfet
Replied by hexfet on topic Mjx Bugs 3
The Bugs3 protocol will be included in the next nightly build.

Please Log in or Create an account to join the conversation.

More
28 Aug 2018 05:09 #70497 by vlad_vy
Replied by vlad_vy on topic Mjx Bugs 3
I don't follow this topic and I have the question: why we need fixed_id[11] if we can't type more than 6 chars fixed id? For save to model config only and not for edit?

Please Log in or Create an account to join the conversation.

More
28 Aug 2018 17:01 #70510 by hexfet
Replied by hexfet on topic Mjx Bugs 3
Yes, the radio id is stored in the fixed id field and should not be edited. But now that we have mmakai's algorithm for converting the rxid to radio id it would be possible to store the rxid instead and save a few bytes. I'll test that.

Please Log in or Create an account to join the conversation.

More
29 Aug 2018 12:49 - 29 Aug 2018 13:01 #70522 by planger
Replied by planger on topic Mjx Bugs 3
@hexfet
I've looked at the provided dumps by C0ckpitvue_777.
The acro/angle flag is in packet[5] flag 0x04.
I've added the following to multi github.com/pascallanger/DIY-Multiprotoco...tocol/Bugs_a7105.ino :
// flags packet byte 5
...
#define BUGS_FLAG_ANGLE		0x04    // angle/acro mode (set is angle mode)
...
	if(bind)
	{
		packet[4] = change_channel | 0x80;
		packet[5] = 0x02 | BUGS_arm_flags
		| GET_FLAG(BUGS_CH_SW_ANGLE, BUGS_FLAG_ANGLE);
	}
	else
	{
		packet[4] = change_channel | BUGS_FLAG_MODE
		| GET_FLAG(BUGS_CH_SW_FLIP, BUGS_FLAG_FLIP)
		| GET_FLAG(BUGS_CH_SW_PICTURE, BUGS_FLAG_PICTURE)
		| GET_FLAG(BUGS_CH_SW_VIDEO, BUGS_FLAG_VIDEO);
		packet[5] = 0x02 | BUGS_arm_flags
		| GET_FLAG(BUGS_CH_SW_ANGLE, BUGS_FLAG_ANGLE)
		| GET_FLAG(BUGS_CH_SW_LED, BUGS_FLAG_LED);
	}
Pascal
Last edit: 29 Aug 2018 13:01 by planger.

Please Log in or Create an account to join the conversation.

More
30 Aug 2018 00:21 #70545 by hexfet
Replied by hexfet on topic Mjx Bugs 3
Thanks Pascal!

Angle/Acro mode control is added on channel 10 in Bugs3 protocol. Change will be in the next nightly build.

Please Log in or Create an account to join the conversation.

More
30 Aug 2018 00:32 #70546 by C0ckpitvue 777
Replied by C0ckpitvue 777 on topic Mjx Bugs 3
Hey,I love you guys,your skills are off the Richter Scale,big thanks with much gratitude,genuises..

Please Log in or Create an account to join the conversation.

More
30 Aug 2018 00:55 #70547 by davdrone1
Replied by davdrone1 on topic Mjx Bugs 3
Guess it's time to fire up FPV FreeRider in acro mode, and practise with my Jumper.

You guys just keep adding amazing value to the basic Bugs 3 line. Now, if you could
just add control over an add-on servo or 2, for camera adjustment, and dropping the
odd fishing line .... ;-)

Time flies like a banana

Please Log in or Create an account to join the conversation.

More
30 Aug 2018 09:24 #70552 by davdrone1
Replied by davdrone1 on topic Mjx Bugs 3
Re-read recent posts about acro. Although it will be included in the Bugs 3 build, sounds as if it only applies to the Bugs 8 Pro,
with a hardware jumper installed on the fcb.
Is this correct?

Time flies like a banana

Please Log in or Create an account to join the conversation.

More
31 Aug 2018 03:09 #70570 by JayDrone
Replied by JayDrone on topic Mjx Bugs 3
is the update up?

Please Log in or Create an account to join the conversation.

More
31 Aug 2018 03:22 #70571 by hexfet
Replied by hexfet on topic Mjx Bugs 3
It is now - c8386fe3. There was an error in the 7e emulator build last night so the yesterday's nightly wasn't updated.

Please Log in or Create an account to join the conversation.

More
31 Aug 2018 11:19 #70579 by JayDrone
Replied by JayDrone on topic Mjx Bugs 3
c8386fe3 ?? is this in test builds?

Please Log in or Create an account to join the conversation.

More
31 Aug 2018 12:00 - 31 Aug 2018 12:19 #70583 by C0ckpitvue 777
Replied by C0ckpitvue 777 on topic Mjx Bugs 3
@davdrone1,Absolutely....It's only for the jumper enabled b8 pro...
Last edit: 31 Aug 2018 12:19 by C0ckpitvue 777.

Please Log in or Create an account to join the conversation.

Time to create page: 0.111 seconds
Powered by Kunena Forum