• ISO images of switches

    From Helmut Giese@hgiese@ratiosoft.com to comp.lang.tcl on Thu Mar 28 12:36:29 2024
    From Newsgroup: comp.lang.tcl

    Hello out there,
    I am completely helpless wrt graphical design and therefore am looking
    for images of switches that visually 'show' their state:
    pressed/released, open/closed, on/off etc.

    Any tip or link will be greatly appreciated
    Helmut
    --- Synchronet 3.20a-Linux NewsLink 1.114
  • From greg@gregor.ebbing@gmx.de to comp.lang.tcl on Fri Mar 29 06:23:21 2024
    From Newsgroup: comp.lang.tcl

    Am 28.03.24 um 12:36 schrieb Helmut Giese:
    Hello out there,
    I am completely helpless wrt graphical design and therefore am looking
    for images of switches that visually 'show' their state:
    pressed/released, open/closed, on/off etc.

    Any tip or link will be greatly appreciated
    Helmut

    Moin,


    at least as a PDF:

    https://www.electrical-symbols.com/electric-electronic-symbols/switch-symbols.htm

    Gregor
    --- Synchronet 3.20a-Linux NewsLink 1.114
  • From greg@gregor.ebbing@gmx.de to comp.lang.tcl on Fri Mar 29 07:40:49 2024
    From Newsgroup: comp.lang.tcl

    Am 29.03.24 um 06:23 schrieb greg:
    Am 28.03.24 um 12:36 schrieb Helmut Giese:
    Hello out there,
    I am completely helpless wrt graphical design and therefore am looking
    for images of switches that visually 'show' their state:
    pressed/released, open/closed, on/off etc.

    Any tip or link will be greatly appreciated
    Helmut

    Moin,


    at least as a PDF:

    https://www.electrical-symbols.com/electric-electronic-symbols/switch-symbols.htm

    Gregor

    or wikipedia

    https://en.wikipedia.org/wiki/Switch#Contact_terminology

    and power symbol

    #! /usr/bin/env tclsh
    #
    # power symbol
    # https://en.wikipedia.org/wiki/Power_symbol
    set list {
    \U23FB "POWER SYMBOL"
    \U23FC "POWER ON-OFF SYMBOL "
    \U23FD "POWER ON SYMBOL"
    \U2B58 "HEAVY CIRCLE"
    \U23FE "POWER SLEEP SYMBOL"

    }
    foreach {el desc} $list {
    puts "$el $desc"
    }
    --- Synchronet 3.20a-Linux NewsLink 1.114
  • From Helmut Giese@hgiese@ratiosoft.com to comp.lang.tcl on Fri Mar 29 15:04:13 2024
    From Newsgroup: comp.lang.tcl

    Hi Greg,
    Moin,


    at least as a PDF:

    https://www.electrical-symbols.com/electric-electronic-symbols/switch-symbols.htm

    Gregor

    or wikipedia

    https://en.wikipedia.org/wiki/Switch#Contact_terminology

    and power symbol

    #! /usr/bin/env tclsh
    #
    # power symbol
    # https://en.wikipedia.org/wiki/Power_symbol
    set list {
    \U23FB "POWER SYMBOL"
    \U23FC "POWER ON-OFF SYMBOL "
    \U23FD "POWER ON SYMBOL"
    \U2B58 "HEAVY CIRCLE"
    \U23FE "POWER SLEEP SYMBOL"

    }
    foreach {el desc} $list {
    puts "$el $desc"
    }
    thanks. It is not what I had hoped for but it gave me an idea: Seeing
    the symbols I figured that I could just forget about fancy graphics
    and turn the symbols into buttons.
    This turns the visual aspect more to the technical side which probably simplifies the whole design considerably.
    Whow, what a progress with just a simple answer.
    Many thanks
    Helmut
    --- Synchronet 3.20a-Linux NewsLink 1.114