add archive (files probably no longer used)

here we can find old files
This commit is contained in:
l_samenv
2022-08-22 15:28:09 +02:00
parent 6c83e592de
commit 4d9961fe5c
85 changed files with 3635 additions and 0 deletions

View File

@ -0,0 +1,27 @@
# ASM 120 h, analog output read by fluke 45
namespace eval asm120h {} {
}
proc stdConfig::asm120h {} {
controller std "\n" 5 ">"
prop startcmd "*IDN?"
obj Fluke45 rd
prop read asm120h::read
prop readcmd "MEAS?"
prop readfmt "%g"
}
proc asm120h::read {} {
sct send "MEAS?"
return asm120h::update
}
proc asm120h::update {} {
set res 0
scan [sct result] %f res
sct update [expr $res - 9]
return idle
}