Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged

#608 #609

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions 2 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## 2.5.x 2018-12-31

- Add support for drawOval
- Upgrade lejos-commons to 0.7.3
- Add support for BrickPi3 for EV3Dev Debian Stretch
- Add support for BrickPi+ for EV3Dev Debian Stretch
- Add support for Unregulated motors on BrickPi 3
Expand Down
4 changes: 2 additions & 2 deletions 4 build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ plugins {
id 'maven-publish'
}

version = '2.5.1'
version = '2.5.3'

repositories {
jcenter()
Expand All @@ -56,7 +56,7 @@ dependencies {
testCompileOnly("org.projectlombok:lombok:1.16.20")

compile("org.slf4j:slf4j-api:1.7.25")
compile("com.github.ev3dev-lang-java:lejos-commons:0.7.2")
compile("com.github.ev3dev-lang-java:lejos-commons:0.7.3")
compile("net.java.dev.jna:jna:4.5.2")

testCompile("ch.qos.logback:logback-classic:1.2.3")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# leJOS Sensor API changes (Nov 2015)
# lejos API changelog

## GraphicsLCD

- Added method drawOval 08/12/2018

## leJOS Sensor API changes (Nov 2015)

In this project, we reimplemented most of the leJOS sensor API.
However, there are some incompatibilities and changes to enhance
Expand Down
5 changes: 5 additions & 0 deletions 5 src/main/java/ev3dev/actuators/LCDJessie.java
Original file line number Diff line number Diff line change
Expand Up @@ -350,4 +350,9 @@ public int setAutoRefreshPeriod(int i) {
log.debug("Feature not implemented");
return -1;
}

@Override
public void drawOval(int x, int y, int width, int height) {
g2d.drawOval(x, y, width, height);
}
}
6 changes: 6 additions & 0 deletions 6 src/main/java/ev3dev/actuators/LCDStretch.java
Original file line number Diff line number Diff line change
Expand Up @@ -543,4 +543,10 @@ public void run() {
refresh();
}
}

@Override
public void drawOval(int x, int y, int width, int height) {
g2d.drawOval(x, y, width, height);
}

}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.