you can use the
YModule.saveToFlash()
function only 100000 times in the life of the module.
Make sure you do not call this function within a loop.
Listing the modules
Obtaining the list of the connected modules is performed with the
YModule.yFirstModule()
function which returns the first module found. Then, you only need to call the
nextModule()
function of this object to find the following modules, and this as long as the returned value is not
null
. Below a short example listing the connected modules.
import
com.yoctopuce.YoctoAPI.*
;
public
class
Demo
{
public
static
void
main
(
String
[]
args
)
{
try
{
// setup the API to use local VirtualHub
YAPI
.
RegisterHub
(
"127.0.0.1"
);
}
catch
(
YAPI_Exception
ex
)
{
System
.
out
.
println
(
"Cannot contact VirtualHub on 127.0.0.1 ("
+
ex.
getLocalizedMessage
()
+
")"
);
System
.
out
.
println
(
"Ensure that the VirtualHub application is running"
);
System
.
exit
(
1
);
}
System
.
out
.
println
(
"Device list"
);
YModule
module
=
YModule
.
FirstModule
();
while
(
module
!=
null
)
{
try
{
System
.
out
.
println
(
module.
get_serialNumber
()
+
" ("
+
module.
get_productName
()
+
")"
);
}
catch
(
YAPI_Exception
ex
)
{
break;
}
module
=
module.
nextModule
();
}
YAPI
.
FreeAPI
();
}
}
18.4. Error handling
When you implement a program which must interact with USB modules, you cannot disregard error
handling. Inevitably, there will be a time when a user will have unplugged the device, either before
running the software, or even while the software is running. The Yoctopuce library is designed to help
you support this kind of behavior, but your code must nevertheless be conceived to interpret in the
best possible way the errors indicated by the library.
The simplest way to work around the problem is the one used in the short examples provided in this
chapter: before accessing a module, check that it is online with the
isOnline
function, and then
hope that it will stay so during the fraction of a second necessary for the following code lines to run.
This method is not perfect, but it can be sufficient in some cases. You must however be aware that
you cannot completely exclude an error which would occur after the call to
isOnline
and which
could crash the software.
In the Java API, error handling is implemented with exceptions. Therefore you must catch and
handle correctly all exceptions that might be thrown by the API if you do not want your software to
crash as soon as you unplug a device.
18. Using the Yocto-Display with Java
112
www.yoctopuce.com
Содержание Yocto-Display
Страница 1: ...Yocto Display User Manual...
Страница 2: ......
Страница 40: ...34 www yoctopuce com...
Страница 52: ...46 www yoctopuce com...
Страница 84: ...78 www yoctopuce com...
Страница 92: ...86 www yoctopuce com...
Страница 130: ...124 www yoctopuce com...
Страница 158: ...22 High level API Reference 152 www yoctopuce com On failure throws an exception or returns a negative error code...
Страница 422: ...416 www yoctopuce com...
Страница 424: ...24 Characteristics 418 www yoctopuce com...