Skip to content

Commit

Permalink
Add support for Fujitsu Quaderno devices
Browse files Browse the repository at this point in the history
  • Loading branch information
janten authored and Jan-Gerd Tenberge committed Mar 5, 2021
1 parent fb9c49d commit 990f2a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# dpt-rp1-py
Python script to manage Sony DPT-RP1 without the Digital Paper App. This repository includes a Python library and a command line utility to manage documents on the DPT-RP1. Tested on Windows, Linux, and macOS. Should also work for Sony's other digital paper readers.
Python script to manage electronic paper devices made by Sony (Digital Paper, DPT-RP1, DPT-CP1) or Fujitsu (Quaderno) without the Digital Paper App. This repository includes a Python library and a command line utility to manage documents on the reader. Tested on Windows, Linux, and macOS. Should also work for Sony's other digital paper readers.

Throughout this document, _reader_ or _device_ refers to your Digital Paper device.

Expand Down Expand Up @@ -159,4 +159,4 @@ If you have already registered on macOS, the Digital Paper app stores the files
#### What does not work
* Currently there is no caching, therefore operations can be slow as they require uploading or downloading from the
device. However, this avoids having to resolve conflicts if a document has been changed both on the Digital Paper and
the caching directory.
the caching directory.
2 changes: 1 addition & 1 deletion dptrp1/dptrp1.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def find(self, id, timeout=30):
self.id = id
zc = Zeroconf()
self.lock.acquire()
ServiceBrowser(zc, "_digitalpaper._tcp.local.", self)
ServiceBrowser(zc, ["_digitalpaper._tcp.local.", "_dp_fujitsu._tcp.local."], self)
wait = self.lock.acquire(timeout=timeout) or (self.addr is not None)
zc.close()
if not wait:
Expand Down

0 comments on commit 990f2a2

Please sign in to comment.