newdispprocedure called from a bwise or tcl console, or with a right-click on the canvas. The resulting block has a 5x7 dot pattern on it, which however is static. To make each dot (little round oval in Tk) responsive to mouse clicks, the 'dot' tagged items are given a binding like:
$mc bind dot <Button-1> { set i [$mc find withtag current]; if {[$mc itemcget $i -fill] == "red"} { $mc itemco $i -fill yellow } { $mc itemco $i -fill red } }Now clicking the left mouse button on the block makes the dots 'on' or 'off', see image below.
foreach i [tag_and {display dot}] { $mc itemco $i -fill yellow }This works because the dots on the yellow rectangle all have a common, unique tag, called 'dot', so the bwise provided procedure 'tag_and' can give us the items on the canvas which most likely are exactly all dots on the display block (all items in a block share the same first tag: the name of the block). The itemconfigure of all those items on the main bwise canvas pointed to by the variable mc makes the circles the same inner color as the background of theblock, and leaves the black outline in place.To read the resulting pattern, the following little script is used, rendering the data in a way which leaves bit 0 zero, and reads columnwise:
for {set i 4} {$i>=0} {incr i -1} { set o {}; for {set j 7} {$j>=0} {incr j -1} { set k [tag_and "display dot x$i y$j"] ; if {[$mc itemcget $k -fill] == "red"} { set ii 1 } {set ii 0} ; append o $ii } ; puts [format {%x} [fromBinary $o]] puts -nonewline "0x[format {%x} [fromBinary $o]], " } ; puts {}The result looks like:
unsigned char dis57[8] = {0xf8, 0x24, 0x22, 0x24, 0xf8} ;Minus the prepended unsigned char .... etc. The hex numbers are used in the Blackfin DSP interupt routine to respond to the row counter index coming from the Xilinx based display multiplexer I made, which writes the right column word back to the xilinx which drives the display with it.The result is visible in the next image:
See also Xilinx demo board pin names extractor, Xilinx Spartan 3 Demo rs232 clock set