Skip to content
flarn2006 edited this page Sep 28, 2020 · 5 revisions

Frequently Asked Questions

Q: I'm getting an error message that says "ModuleNotFoundError" at the bottom, and it won't run. How do I fix this?

A: You need to install three Python modules: crcmod, pyserial, and flask. The easiest way to do this is using the pip command; make sure you install this along with Python 3.

pip install crcmod
pip install pyserial
pip install flask

Q: Why doesn't anything appear on the virtual programmer screen?

A: Look at the console/terminal window in which you are running the script. Do you see lines saying "RX" appearing periodically? If not, then you are either using the wrong serial port, or you have not connected the cable properly. If you do see "RX" lines, and you are using UART, make sure the transmit (usually green) wire is properly connected. Otherwise, it may unfortunately be an issue (#4) to which I have not yet found the solution. If you are using RS-485, try using UART instead, or vice versa.


Q: How do I configure my system to run locally, without a connection to ADT?

A: At the Home Menu, click '4' twice to access the account settings. If you see a prompt "ACNT (1-N)", simply click Enter. Click Enter to select "Vw/Edt Acnt" from the menu, then using the ▼ button, select "Account Mode". If it says "Normal" or "Local Fire", click Enter, and use ▼ and ▲ to change it to "Local System". Then click Enter again.

Next, click "ESC." until you're back at Advanced Menu. (If you go back too far, click 4 at the Home Menu.) In the Advanced Menu, click '1' to select "Vw/Edt Panel". Scroll to "Comm Enable" using ▼. If it's set to "YES", change it to "NO". If your keypad beeps and says "LINE CUT" when you disconnect the phone line, you can disable that by changing "Line Cut" to "NO" in this same menu.


Q: My keypad starts beeping and saying "TROUBLE" after a few days, indicating an upload/download failure. ("CH" on Premium Keypad.) How do I make this go away for good?

A: This is the system complaining that it can't communicate with ADT's "Vivaldi" server, which they use to remotely access the system's programming. This check was enabled by the server the first time it connected to your system, and it cannot be disabled from the programming menus. (Except by resetting everything to defaults, which you probably don't want to do.)

The good news is, the same command the server used to enable it can also be used to disable it, and you can send this command yourself using command.py. To do so, connect your PC to the panel just like you would normally, and run:

command.py PORT 6 0

Replace PORT with the appropriate serial port.

Clone this wiki locally