Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
DDC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GOKA HARSHITH
DDC
Commits
416da329
Commit
416da329
authored
Jun 30, 2016
by
Harshith Goka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Debugged
parent
bdd0ce76
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
55 additions
and
33 deletions
+55
-33
app/src/main/java/com/example/harshith/ddc/Constants.java
app/src/main/java/com/example/harshith/ddc/Constants.java
+1
-0
app/src/main/java/com/example/harshith/ddc/Gesture.java
app/src/main/java/com/example/harshith/ddc/Gesture.java
+1
-1
app/src/main/java/com/example/harshith/ddc/GlobalClass.java
app/src/main/java/com/example/harshith/ddc/GlobalClass.java
+10
-0
app/src/main/java/com/example/harshith/ddc/Live.java
app/src/main/java/com/example/harshith/ddc/Live.java
+2
-4
app/src/main/java/com/example/harshith/ddc/ReceiveDataThread.java
...main/java/com/example/harshith/ddc/ReceiveDataThread.java
+35
-25
app/src/main/java/com/example/harshith/ddc/ReceiveService.java
...rc/main/java/com/example/harshith/ddc/ReceiveService.java
+5
-2
app/src/main/java/com/example/harshith/ddc/StaticGesture.java
...src/main/java/com/example/harshith/ddc/StaticGesture.java
+1
-1
No files found.
app/src/main/java/com/example/harshith/ddc/Constants.java
View file @
416da329
...
...
@@ -23,6 +23,7 @@ public class Constants {
public
static
String
END_CALL
=
"EndCall"
;
public
static
String
HOME
=
"Home"
;
public
static
String
BACK
=
"Back"
;
public
static
String
VOLUME
=
"Volume"
;
public
static
int
MODE_NORMAL
=
0
;
public
static
int
MODE_VOLUME
=
255
;
...
...
app/src/main/java/com/example/harshith/ddc/Gesture.java
View file @
416da329
...
...
@@ -8,7 +8,7 @@ public class Gesture{
public
int
adcLevels
=
2
;
public
int
adcUpper
=
0
;
public
int
adcLower
=
100
;
public
int
mpuLevels
=
100
;
public
int
mpuLevels
=
3
;
public
int
mpuUpper
=
50
;
public
int
mpuLower
=
-
50
;
...
...
app/src/main/java/com/example/harshith/ddc/GlobalClass.java
View file @
416da329
...
...
@@ -17,4 +17,14 @@ public class GlobalClass extends Application {
public
Handler
getProcessHandler
()
{
return
processHandler
;
}
StringBuilder
stringBuilder
=
new
StringBuilder
();
public
StringBuilder
getStringBuilder
()
{
return
stringBuilder
;
}
public
void
setStringBuilder
(
StringBuilder
stringBuilder
)
{
this
.
stringBuilder
=
stringBuilder
;
}
}
app/src/main/java/com/example/harshith/ddc/Live.java
View file @
416da329
...
...
@@ -8,7 +8,7 @@ import java.util.Scanner;
public
class
Live
{
int
reading
[];
int
sensors
=
1
0
;
int
sensors
=
1
1
;
public
Live
(){
reading
=
new
int
[
sensors
];
...
...
@@ -31,9 +31,7 @@ public class Live {
}
public
void
update
(
int
[]
readings
){
for
(
int
i
=
0
;
i
<
sensors
;
i
++){
reading
[
i
]
=
readings
[
i
];
}
reading
=
readings
.
clone
();
}
public
void
print
(){
...
...
app/src/main/java/com/example/harshith/ddc/ReceiveDataThread.java
View file @
416da329
This diff is collapsed.
Click to expand it.
app/src/main/java/com/example/harshith/ddc/ReceiveService.java
View file @
416da329
...
...
@@ -61,7 +61,7 @@ public class ReceiveService extends Service {
}
else
if
(
message
.
what
==
Constants
.
READ_STATUS
)
{
if
(
message
.
arg1
==
Constants
.
READ_STATUS_OK
)
{
if
(
((
String
)
message
.
obj
)
.
equals
(
Constants
.
OPEN_CAMERA
))
{
if
(
message
.
obj
.
equals
(
Constants
.
OPEN_CAMERA
))
{
openCamera
();
L
.
s
(
getBaseContext
(),
"Camera Open"
);
resumeReading
(
message
.
arg2
);
...
...
@@ -102,7 +102,8 @@ public class ReceiveService extends Service {
resumeReading
(
message
.
arg2
);
}
else
if
(
message
.
obj
.
equals
(
Constants
.
VOLUME_CONTROL
)){
updateVolume
((
int
)
message
.
obj
);
updateVolume
(
message
.
getData
().
getInt
(
Constants
.
VOLUME
));
resumeReading
(
Constants
.
MODE_VOLUME
);
}
}
else
if
(
message
.
arg1
==
Constants
.
READ_STATUS_NOT_OK
){
...
...
@@ -198,6 +199,7 @@ public class ReceiveService extends Service {
Intent
intent
=
new
Intent
();
intent
.
setAction
(
Intent
.
ACTION_VIEW
);
intent
.
setDataAndType
(
Uri
.
parse
(
"file://"
+
imageLocation
),
"image/*"
);
intent
.
addFlags
(
Intent
.
FLAG_ACTIVITY_NEW_TASK
);
startActivity
(
intent
);
}
}
...
...
@@ -235,6 +237,7 @@ public class ReceiveService extends Service {
Intent
intent
=
new
Intent
();
ComponentName
comp
=
new
ComponentName
(
"com.android.music"
,
"com.android.music.MusicBrowserActivity"
);
intent
.
setComponent
(
comp
);
intent
.
addFlags
(
Intent
.
FLAG_ACTIVITY_NEW_TASK
);
startActivity
(
intent
);
}
public
void
audioPlayPause
(){
...
...
app/src/main/java/com/example/harshith/ddc/StaticGesture.java
View file @
416da329
...
...
@@ -64,7 +64,7 @@ public class StaticGesture extends Gesture {
public
boolean
isInFrame
(
Live
live
){
for
(
int
i
=
0
;
i
<
sensors
;
i
++)
{
if
(!((
eFrame
[
i
][
0
]<
live
.
reading
[
i
])
&&
(
live
.
reading
[
i
]<
eFrame
[
i
][
1
]))){
if
(!((
eFrame
[
i
][
0
]<
=
live
.
reading
[
i
])
&&
(
live
.
reading
[
i
]
<=
eFrame
[
i
][
1
]))){
return
false
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment