-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathREADME
96 lines (68 loc) · 2.92 KB
/
README
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
Description
=========================
libexword is a library that implements the low-level OBEX commands
used to communicate Casio EX-word dictionaries.
This library comes with a program called exword that uses libexword
to allow manipulation of files on the dictionary.
Features:
* list files on device
* upload/download files
* delete files
* install/remove add-on dictionaries
Commands
==========================
connect [mode] [region]
This command connects to an attached EX-word dictionary. It
accepts two optional parameters the first specifies the connection
mode and be bee either library, text, or cd. The second one is the
region of your dictionary and is a two letter country code.
The default values for mode and region are library and ja.
disconnect
This command simply disconnects from the currently connected dictionary.
model
This command displays the raw model information about connected device.
capacity
This command displays the capacity of the currently selected storage medium.
format
This command will format the currently inserted SD card.
list
This command will list all files and directories in your current directory.
delete <filename>
This command deletes deletes the specified file from the currently set
directory on the connected device
send <filename>
This command will upload a file to the connected device. <filename> should
specifiy the fullpath to the file on your local filesystem.
get <filename>
This command will download a file from the connected device. <filename> should
specifiy the fullpath on your local filesystem where the file should be saved.
setpath <path>
This sets the current path on your dictionary. The path is set using the
following format: <sd|mem://path>.
set <option> [value]
This command sets various configutation options. If not value is given for the
specified option its current value is printed out.
Options:
debug - This option sets the debug level (0-5)
mkdir - This option tells setpath if it should create non-existent directories (yes|no)
dict <sub-function>
This command is used to manage installed add-on dictionaries. It only works
when connected in library mode.
Subfunctions:
reset <username>
This will reset your authentication information using the specified
username. When finished it will display the new authkey as well as
save the username/authkey pair to users.dat file. It also deletes any
already installed add-ons.
auth <username> [key]
This peforms authentication and must be called before any other subfunction
except for list and reset. If key is not specified it will try to find the
username in the users.dat file.
list
This command will list currently installed dictionaries.
decrypt <id>
This downloads and decrypts the dictionary with the specified id.
remove <id>
This deletes the dictionary with the specified id.
install <id>
This will install the dictionary with the specified id.