SysUtils,
yocto_api;
const
serial =
'YD128X32-123456'
;
// use serial number or logical name
var
module : TYModule;
errmsg :
string
;
newname :
string
;
begin
// Setup the API to use local USB devices
if
yRegisterHub
(
'usb'
, errmsg
)
<>YAPI_SUCCESS
then
begin
Write(
'RegisterHub error: '
+errmsg
)
;
exit
;
end
;
module := yFindModule
(
serial
)
;
if
(not(
module.
isOnline
))
then
begin
writeln
(
'Module not connected (check identification and USB cable)'
)
;
exit
;
end
;
Writeln
(
'Current logical name : '
+module.
get_logicalName
())
;
Write(
'Enter new name : '
)
;
Readln
(
newname
)
;
if
(not(
yCheckLogicalName
(
newname
)))
then
begin
Writeln
(
'invalid logical name'
)
;
exit
;
end
;
module.
set_logicalName
(
newname
)
;
module.
saveToFlash
()
;
yFreeAPI
()
;
Writeln
(
'logical name is now : '
+module.
get_logicalName
())
;
end
.
Warning: the number of write cycles of the nonvolatile memory of the module is limited. When this
limit is reached, nothing guaranties that the saving process is performed correctly. This limit, linked to
the technology employed by the module micro-processor, is located at about 100000 cycles. In short,
you can use the
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
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
nil
. Below a short
example listing the connected modules.
program
inventory;
{$APPTYPE CONSOLE}
uses
SysUtils,
yocto_api;
var
module : TYModule;
errmsg :
string
;
begin
// Setup the API to use local USB devices
if
yRegisterHub
(
'usb'
, errmsg
)
<>YAPI_SUCCESS
then
begin
Write(
'RegisterHub error: '
+errmsg
)
;
exit
;
end
;
Writeln
(
'Device list'
)
;
module := yFirstModule
()
;
16. Using Yocto-Display with Delphi
www.yoctopuce.com
99
Содержание 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...