Based on the responses from the “ReadSensorTable” command in my Economatics Smart Box SB-04, I’ve concluded that the following official sensor exist :
Index
Name
Val1
Val2
Units
3
Temp range 1
Tmp
Temp
degC
4
Voltage range 1
V
Volts
mV
5
Temp range 2
Tmp
Temp
degC
6
Voltage range 2
V
Volts
volts
7
Temp range 3
Tmp
Temp
degC
8
Voltage range 3
V
Volts
volts
9
Temp range 4
Tmp
Temp
degC
10
Sound (standard)
Snd
Sound
?
11
pH
pH
pH
?
13
Position
Pos
Postn
deg
17
Light (standard)
Lt
Light
?
21
R’Humidity
Hmd
Humid
%RH
22
Sound range 1
Snd
Sound
dbA
23
Light range 1
Lt
Light
Lux
24
Sound range 2
Snd
Sound
dbA
25
Light range 2
Lt
Light
Lux
26
Barometric Pressure
Atm
Atmos
mBars
27
Light range 3
Lt
Light
Lux
28
User adaptor
UA
User
?
29
0-1 Volt adapator
V
Adapt
?
30
Temp (low range)
Tmp
Temp
degC
31
Light gate
LG
LGate
?
33
Temp (standard)
Tmp
Temp
degC
There is more data being fed back by the box regarding these sensor types, but it is a little bit of a pig to understand as my terminal is reading it as escape characters. I suspect it would be easier to understand if I had some official sensors myself. I suspect that some experimentation is in order! I’ll connect a variable voltage to the detection pin and watch what sensor types the box detects at each voltage. With an ADC connected to my computer I might be able to automate the process… but that is probably more effort than it is worth.
Having got a copy of the Economatics Smart Box “Operating System Serial Protocols” document curiosity of John and flaxcottage.com, I noted that one of the commands returns the name of a command based on the provided command number. Given that the instruction manual is most likely for an older version of the Smart Box (mine is an “SB-04”, rather than the older “SB-01”), which is build around a 6502 processor rather than the Mitsubishi microcontroller in mine, I wrote a short program which iterates through every command number between 0 and 99 and returns the “CodeName”. The following table shows the resulting output – I’ve also included room for other Smart Box variants for when I get access to one, or if someone runs the same program for me.
Command No.
SB-01
SB-01/EV
SB-04
0
Blank*
Blank
1
Version
Version
2
Reset
Reset
3
NameCode
NameCode
4
CodeName
CodeName
5
MultipleSetup
MultipleSetup
6
MultipleRead
MultipleRead
7
MultipleServer
MultipleServer
8
IdentSystem
9
Credits
Credits
10
WriteMotors
WriteMotors
11
ReadMotors
ReadMotors
12
MotorForward
MotorForward
13
MotorReverse
MotorReverse
14
MotorHalt
MotorHalt
15
MotorPower
MotorPower
16
PatchMF*
PatchMF
17
MotorVoltage
20
WriteOutputs
WriteOutputs
21
OutputPower
OutputPower
22
GetSensors*
GetSensors
23
CheckSensors*
CheckSensors
25
ReadSensorTable
28
SetBitHigh
SetBitHigh
29
SetBitLow
SetBitLow
30
ReadADCReg*
31
WriteADCReg*
32
ReadACIAReg*
33
WriteACIAReg*
34
ReadVIAReg*
35
WriteVIAReg*
36
SetVIAHigh*
37
SetVIALow*
40
ReadADC
ReadADC
41
ReadADCs
ReadADCs
42
ForcedADCRead
ForcedADCRead
44
HighResADC
HighResADC
45
LowResADC
LowResADC
47
ReadResolution
ReadResolution
50
DownloadData
DownloadData375
52
UploadData
UploadData375
54
ExecuteCode
ExecuteCode375
55
StoreByte
StoreByte375
56
ReadByte
ReadByte375
57
ReadRAMSize
59
ExtendCall
60
SetClock
SetClock
61
ReadClock
ReadClock
62
ReadTopmem
63
WriteTopmem
64
ReadLomem
65
WriteLomem
66
ReadHimem
67
WriteHimem
90
ReadInputs
ReadInputs
91
ReadBit
ReadBit
92
ReadOutputs
93
CountReset
94
CountRead
Items marked with a * in the SB-01 column are undocumented. The SB-01 commands were taken from a machine belonging to mph1708 on the stardot.org.uk forums. The machine was running ROM OS 2.073 dated 12/07/96.
The program I used is as follows – don’t forget to change the serial port from “/dev/ttyUSB0” to whatever is applicable on your setup :
#!/usr/bin/python
import time
import serial
ser = None
def getCommandName(cmd):
global ser
if ser.is_open:
ser.write(chr(4)+chr(cmd))
time.sleep(0.2)
readText = ""
while ser.inWaiting() > 0:
readText += ser.read(1)
return readText
ser = serial.Serial('/dev/ttyUSB0', 9600, timeout=1)
x=0
while x<100:
theText = getCommandName(x)
if len(theText)>1:
print str(x)+" : "+theText
x+=1
ser.close()
Please let me know if you have any interesting results via my contact page.
Things to note looking at the results, compared to the available documentation…
Command 0 (Blank) is undocumented
Command 8 (IdentSystem) is undocumented
Command 9 is called “Credits” instead of “Copyright”
The documentation contains both “MotorHalt” and “MotorPower” (an typo?) as Command 14. The SB-04 box reports Command 14 as “MotorHalt” and Command 15 as “MotorPower”
Command 16 (PatchMF) is undocumented
Command 17 (MotorVoltage) is undocumented – this is not a surprise as some older Smart Boxes used a key to change voltages, whereas it seems that this is a software feature on the SB-04
Command 22 (GetSensors) is undocumented. I assume this reports what sensor types are connected?
Command 23 (CheckSensors) is undocumented
Command 25 (ReadSensorTable) is undocumented
The documentation contains both “SetBitHigh” and “SetBitLow” (an typo?) as Command 28. The SB-04 box reports Command 28 as “SetBitHigh” and Command 29 as “SetBitLow”
Command 43 is not present on the SB-04. This is “ReadSensor” and may have been replaced by Command 22, 23, and 25
Commands 50, 52, 54, 55 and 56, all of which relate to accessing the Smart Box memory and executing the contents of the memory, have been renamed with “375” on the end. I believe this refers to the microcontroller type? I am surprised to see they are still implemented at all.
Commands 51 and 53 have been omitted. These commands related to transferring data to and from the Smart Box using an Xmodem transfer format (with and without error checking)
Command 57 has been omitted (ReadRAMSize)
Command 58 has been omitted (ReadModule). This command seems to be for identifying some kind of hardware additions fitted to the equipment when the Smart Box was used embedded within a machine or similar.
Command 59 has been omitted (ExtendCall) this seems to be a method by which additional commands could be added and it seems unfortunate that it has been excluded. Reference is made to “Appendix B, machine code programming”. Unfortunately I don’t appear to have a copy of this appendix.
Command 62 is omitted (ReadTopMem)
Command 63 is omitted (WriteTopMem)
64, 65, 66 and 67 (“ReadLoMem”, “WriteLowMem”, “ReadHiMem” and “WriteHiMem” respectively) are all omitted
Command 93 (CountReset) is undocumented. I guess this is a hardware counter, but don’t currently know what input it is connected to.
Command 94 (CountRead) is undocumented. I guess this is a hardware counter, but don’t currently know what input it is connected to.
I’d be very interested to run the same program on an older Smart Box to see if there are any undocumented commands there. A fair few commands appear to have been removed for the SB-04, many of which were likely difficult or impossible to implement on the microcontroller as opposed to the full 6502 embedded computer that existed before.