-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
103 lines (92 loc) · 4.37 KB
/
Copy pathabout.html
File metadata and controls
103 lines (92 loc) · 4.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="format-detection" content="telephone=no"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta http-equiv="Cache-control" content="no-cache, no-store, must-revalidate" />
<meta name="format-detection" content="telephone=no" />
<title>EV3Dev-lang-Java</title>
<meta name="description" content="A project to learn Java and create software for Mindstorms Robots using EV3Dev & the LeJOS way.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/favicon/site.webmanifest">
<link rel="mask-icon" href="assets/favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#050404">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="css/custom.css">
</head>
<body>
<header class="content">
<article>
<h2><a href="#ni">EV3 Logo</a></h2>
<ul class="home">
<li><a href="index.html">Home</a></li>
<li><a href="projects.html" >Projects</a></li>
<li><a href="http://ev3dev-lang-java.github.io/docs/support/index.html" target="_blank">Docs</a></li>
<li><a href="about.html" class="select">About</a></li>
<li><a href="https://github.com/ev3dev-lang-java/ev3dev-lang-java" target="_blank">Github</a></li>
</ul>
<div class="btn_hamb">
<div class="hamb"><div class="inner"></div></div>
</div>
</article>
</header>
<main class="content">
<section>
<article class="docs">
<h1>About</h1>
<p>
<strong>Introduction</strong>
</p>
<p>
In Lego Mindstorms ecosystem, the default solution to develop Java software for Lego Mindstorms was LeJOS but now exists one alternative, EV3Dev-lang-java a Java project running on the top of EV3Dev.
</p>
<p>
Lego Mindstorms ecosystem is a nice educational way to learn Java programming in general and Robotics in particular. Now, it is possible to install a complete Linux distro in the third generation of the product and others companies like Mindsensors & Dexter Industries has released products which interact with Sensors & Actuators from Lego ecosystem and that boards can use the Power of the popular board Raspberry Pi 3
</p>
<p>
But, with the help of EV3Dev, it is possible to have the same Linux experience for multiple boards. So... why not develop a Java library for that Linux Distro? The answer is EV3Dev-lang-java. The project, takes the good things of both worlds: EV3Dev with the complete linux experience and LeJOS with the rich local navigation stack and the remote support in the future.
</p>
<p>
<strong>What Debian versions are supported with this library?</strong>
</p>
<p>
The library has support for Debian Jessie & Debian Stretch. In this release, we have finished the support for Debian Stretch for EV3 and you could use OpenJDK 11 or OpenJDK 12 EA and it is amazing!
</p>
<p>
If you need to use any Raspberry Pi Boards, I recommend to use the stable EV3Dev Debian Jessie release.
</p>
<p>
<strong>What is the hardware platforms supported in this project?</strong>
</p>
<p>
Using the same Java objects, it is possible to deploy the software for Robots on EV3 Brick, Raspberry Pi 3 with BrickPi 3 & PiStorms.
</p>
</article>
</section>
</main>
<footer>
</footer>
<div class="overlay"></div>
<div class="popup"></div>
<script
src="https://code.jquery.com/jquery-3.4.0.min.js"
integrity="sha256-BJeo0qm959uMBGb65z40ejJYGSgR7REI4+CW1fNKwOg="
crossorigin="anonymous"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
<script type="text/javascript" src="js/core/ev3.js"></script>
<script type="text/javascript">
$(function(){
menuMobile();
submenuMobile();
//Activation highlight
$('pre code').each(function(i, block) {
hljs.highlightBlock(block);
});
});
</script>
</body>
</html>