View Single Post
Old 04-25-2025, 04:23 PM   #5
chaley
Grand Sorcerer
chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.
 
Posts: 12,465
Karma: 8025600
Join Date: Jan 2010
Location: Notts, England
Device: Kobo Libra 2
FWIW: a single entry in a plugboard can handle multiple devices if you use "connected_device_uuid()" to select between processing blocks for the devices. Something like:
Code:
program:
    uuid = connected_device_uuid();
    if uuid == 'first device's uuid' then
        do whatever you want for that device
    elif uuid == 'second device's uuid' then
        do whatever you want for the second device
    else
        do whatever you want for an unknown uuid
    fi
chaley is offline   Reply With Quote