-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #173 from NuwanSameera/IoTS-1.0.0-M2
Digital display new operations added and modified display agent added.
- Loading branch information
Showing
26 changed files
with
407 additions
and
231 deletions.
There are no files selected for viewing
305 changes: 151 additions & 154 deletions
305
.../carbon/device/mgt/iot/digitaldisplay/controller/api/DigitalDisplayControllerService.java
Large diffs are not rendered by default.
Oops, something went wrong.
33 changes: 33 additions & 0 deletions
33
...a/org/wso2/carbon/device/mgt/iot/digitaldisplay/controller/api/model/ScreenShotModel.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
package org.wso2.carbon.device.mgt.iot.digitaldisplay.controller.api.model; | ||
|
||
public class ScreenShotModel { | ||
|
||
private String[] scrrenShotData; | ||
private int length; | ||
|
||
public ScreenShotModel(){ | ||
|
||
} | ||
|
||
public ScreenShotModel(String[] scrrenShotData , int length){ | ||
this.scrrenShotData = scrrenShotData; | ||
this.length = length; | ||
} | ||
|
||
public void setScrrenShotData(String[] scrrenShotData){ | ||
this.scrrenShotData = scrrenShotData; | ||
} | ||
|
||
public void setLength(int length){ | ||
this.length = length; | ||
} | ||
|
||
public String[] getScrrenShotData(){ | ||
return this.scrrenShotData; | ||
} | ||
|
||
public int getLength(){ | ||
return this.length; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+105 KB
(100%)
....carbon.device.mgt.iot.digitaldisplay.feature/src/main/resources/agent/DigitalDisplay.zip
Binary file not shown.
Empty file removed
0
...carbon.device.mgt.iot.digitaldisplay.feature/src/main/resources/agent/ReadMe.md
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,8 @@ for P in paho-mqtt lxml; do | |
} | ||
done | ||
|
||
unzip DigitalDisplay | ||
cp ./deviceConfig.properties ./DigitalDisplay | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.