Skip to content

Commit ff89ff1

Browse files
committed
1.4
1 parent 9868e79 commit ff89ff1

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

app/src/main/java/org/FreeTak/FreeTAKUAS/CompleteWidgetActivity.java

+7-4
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,14 @@
5555
import dji.sdk.products.Aircraft;
5656
import dji.sdk.sdkmanager.DJISDKManager;
5757
import dji.sdk.sdkmanager.LiveStreamManager;
58+
import dji.sdk.sdkmanager.LiveVideoBitRateMode;
59+
import dji.sdk.sdkmanager.LiveVideoResolution;
5860
import dji.ux.widget.FPVOverlayWidget;
5961
import dji.ux.widget.FPVWidget;
6062
import dji.ux.widget.MapWidget;
6163
import dji.ux.widget.controls.CameraControlsWidget;
6264
import dji.ux.widget.dashboard.CompassWidget;
6365

64-
import static java.lang.Math.cosh;
65-
import static java.lang.Math.tan;
66-
6766
/**
6867
* Activity that shows all the UI elements together
6968
*/
@@ -102,7 +101,7 @@ public class CompleteWidgetActivity extends Activity {
102101
private final Handler stream_handler = new Handler();
103102
private Runnable sensor_runnable, stream_runnable;
104103
// send 4 sensor updates a second
105-
int sensor_delay = 250;
104+
int sensor_delay = 500;
106105
// every 3 seconds try to send a stream cot, stop when we send one successfully
107106
int stream_delay = 3000;
108107

@@ -484,6 +483,10 @@ public void onClick(View v) {
484483
l.registerListener((x) -> {
485484
Log.d(TAG, "LiveStream callback:" + x);
486485
});
486+
487+
//l.setLiveVideoResolution(new LiveVideoResolution(480, 360));
488+
//l.setLiveVideoResolution(LiveVideoResolution.VIDEO_RESOLUTION_480_360);
489+
//l.setLiveVideoBitRate(LiveVideoBitRateMode.AUTO.getValue());
487490
l.setAudioMuted(true);
488491
l.setVideoSource(LiveStreamManager.LiveStreamVideoSource.Primary);
489492
l.setVideoEncodingEnabled(true);

app/src/main/res/values/strings.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<resources>
22
<string name="app_name">FreeTAK UAS</string>
3-
<string name="app_version">FreeTAK UAS version 1.3</string>
3+
<string name="app_version">FreeTAK UAS version 1.4</string>
44
<string name="uas_button_disabled">UAS [NOT READY]</string>
55
<string name="uas_button_enabled">UAS [READY]</string>
66
<string name="select_all">Select All</string>

0 commit comments

Comments
 (0)