WTI remote power strip: Difference between revisions
From Wildsong
Jump to navigationJump to search
Brian Wilson (talk | contribs) mNo edit summary |
Brian Wilson (talk | contribs) mNo edit summary |
||
Line 10: | Line 10: | ||
Inside it has: | Inside it has: | ||
* a PIC 16C56 microcontroller, in a socket | * a PIC 16C56 microcontroller, in a socket | ||
* 5 nice relays and associated drivers to interface to | * 5 nice relays and associated drivers to interface to PIC | ||
* a 555 timer | * a 555 timer | ||
* an ADM232 on the serial port | * an ADM232 on the serial port | ||
Line 24: | Line 24: | ||
To substitute a flash device I could drop in a 16F628A, then I'd get | To substitute a flash device I could drop in a 16F628A, then I'd get | ||
3.5k of RAM and 224 bytes of RAM. | 3.5k of RAM and 224 bytes of RAM. | ||
== Operation == | |||
Manual [[File:wti_power_strip.pdf]] | Manual [[File:wti_power_strip.pdf]] | ||
From bellman, | |||
minicom --device /dev/ttyS0 | |||
The menu should come up. | |||
# LCD Monitor | |||
# LCD Monitor | |||
# Phone | |||
# 12V to Powerpole bus | |||
# Keyboard light | |||
The basic command is "/n ON|OFF|REBOOT", where n is a port number 1-5. | |||
I wrote php code to talk to it a long time ago. |
Revision as of 15:05, 11 April 2017
I have a Western Telematics, Inc RPB+ remote power strip.
On the outside:
- 5 switched AC outlets, individually controllable
- Can switch up to 15A on one port, up to 15A for all ports.
- 9 pin RS232 port (you need a null modem cable to connect)
- Dip switch for setting baud rate
- An LED for each outlet on the front panel
Inside it has:
- a PIC 16C56 microcontroller, in a socket
- 5 nice relays and associated drivers to interface to PIC
- a 555 timer
- an ADM232 on the serial port
- a power supply
A PIC 16C56 has:
- 18 pin DIP
- 1.5K memory
- 25 bytes of RAM (whew! takes my breath away!)
- 1 8-bit timer
- It's OTP = one time programmable
To substitute a flash device I could drop in a 16F628A, then I'd get 3.5k of RAM and 224 bytes of RAM.
Operation
Manual File:Wti power strip.pdf
From bellman,
minicom --device /dev/ttyS0
The menu should come up.
- LCD Monitor
- LCD Monitor
- Phone
- 12V to Powerpole bus
- Keyboard light
The basic command is "/n ON|OFF|REBOOT", where n is a port number 1-5. I wrote php code to talk to it a long time ago.