Read out Smoke Detectors using Java

For this project we are assuming, that you have a Java development environment set up and that you have a rudimentary understanding of the Java language.

If you are totally new to Java itself you should start here. If you are new to the Tinkerforge API, you should start here.

We are also assuming that you have a smoke detector connected to an Industrial Digital In 4 Bricklet as described here.

Goals

We are setting the following goal for this project:

  • Read out the alarm status of a smoke detector
  • and react on its alarm signal.

Since this project will likely run 24/7, we will also make sure that the application is as robust towards external influences as possible. The application should still work when

  • Bricklets are exchanged (i.e. we don't rely on UIDs),
  • Brick Daemon isn't running or is restarted,
  • WIFI Extension is out of range or
  • Brick is restarted (power loss or accidental USB removal).

In the following we will show step-by-step how this can be achieved.

Step 1: Discover Bricks and Bricklets

To start off, we need to define where our program should connect to:

private static final String host = "localhost";
private static final int port = 4223;

If the WIFI Extension is used or if the Brick Daemon is running on a different PC, you have to exchange "localhost" with the IP address or hostname of the WIFI Extension or PC.

When the program is started, we need to register the EnumerateListener listener and the ConnectedListener listener and trigger a first enumerate:

public static void main(String args[]) {
    ipcon = new IPConnection();
    ipcon.connect(host, port);

    smokeListener = new SmokeListener(ipcon);
    ipcon.addEnumerateListener(smokeListener);
    ipcon.addConnectedListener(smokeListener);

    ipcon.enumerate();
}

The enumerate callback is triggered if a Brick gets connected over USB or if the enumerate() function is called. This allows to discover the Bricks and Bricklets in a stack without knowing their types or UIDs beforehand.

The connected callback is triggered if the connection to the WIFI Extension or to the Brick Daemon got established. In this callback we need to trigger the enumerate again, if the reason is an auto reconnect:

class SmokeListener implements IPConnection.EnumerateListener,
                               IPConnection.ConnectedListener {
    public void connected(short connectedReason) {
        if(connectedReason == IPConnection.CONNECT_REASON_AUTO_RECONNECT) {
            ipcon.enumerate();
        }
    }
}

An auto reconnect means, that the connection to the WIFI Extension or to the Brick Daemon was lost and could subsequently be established again. In this case the Bricklets may have lost their configurations and we have to reconfigure them. Since the configuration is done during the enumeration process (see below), we have to trigger another enumeration.

Step 1 put together:

class SmokeListener implements IPConnection.EnumerateListener,
                               IPConnection.ConnectedListener {
    private IPConnection ipcon = null;

    public SmokeListener(IPConnection ipcon) {
        this.ipcon = ipcon;
    }

    public void connected(short connectedReason) {
        if(connectedReason == IPConnection.CONNECT_REASON_AUTO_RECONNECT) {
            ipcon.enumerate();
        }
    }
}

public class SmokeDetector {
    private static final String host = "localhost";
    private static final int port = 4223;
    private static IPConnection ipcon = null;
    private static SmokeListener smokeListener = null;

    public static void main(String args[]) {
        ipcon = new IPConnection();
        ipcon.connect(host, port);

        smokeListener = new SmokeListener(ipcon);
        ipcon.addEnumerateListener(smokeListener);
        ipcon.addConnectedListener(smokeListener);

        ipcon.enumerate();
    }
}

Step 2: Initialize Bricklet on Enumeration

During the enumeration we want to configure the Industrial Digital In 4 Bricklet. Doing this during the enumeration ensures that the Bricklet gets reconfigured if the Brick was disconnected or there was a power loss.

The configurations should be performed on first startup (ENUMERATION_TYPE_CONNECTED) as well as whenever the enumeration is triggered externally by us (ENUMERATION_TYPE_AVAILABLE):

public void enumerate(String uid, String connectedUid, char position,
                      short[] hardwareVersion, short[] firmwareVersion,
                      int deviceIdentifier, short enumerationType) {
    if(enumerationType == IPConnection.ENUMERATION_TYPE_CONNECTED ||
       enumerationType == IPConnection.ENUMERATION_TYPE_AVAILABLE) {

We configure the Industrial Digital In 4 Bricklet to call the interrupt callback if a change of the voltage level on any input pin is detected. The debounce period is set to 10s (10000ms) to avoid being spammed with callbacks. Interrupt detection is enabled for all inputs (15 = 0b1111).

if(deviceIdentifier == BrickletIndustrialDigitalIn4.DEVICE_IDENTIFIER) {
    brickletIndustrialDigitalIn4 = new BrickletIndustrialDigitalIn4(uid, ipcon);
    brickletIndustrialDigitalIn4.setDebouncePeriod(10000);
    brickletIndustrialDigitalIn4.setInterrupt(15);
    brickletIndustrialDigitalIn4.addInterruptListener(this);
}

Step 2 put together:

public void enumerate(String uid, String connectedUid, char position,
                      short[] hardwareVersion, short[] firmwareVersion,
                      int deviceIdentifier, short enumerationType) {
    if(enumerationType == IPConnection.ENUMERATION_TYPE_CONNECTED ||
       enumerationType == IPConnection.ENUMERATION_TYPE_AVAILABLE) {
        if(deviceIdentifier == BrickletIndustrialDigitalIn4.DEVICE_IDENTIFIER) {
            brickletIndustrialDigitalIn4 = new BrickletIndustrialDigitalIn4(uid, ipcon);
            brickletIndustrialDigitalIn4.setDebouncePeriod(10000);
            brickletIndustrialDigitalIn4.setInterrupt(15);
            brickletIndustrialDigitalIn4.addInterruptListener(this);
        }
    }
}

Step 3: Handle the alarm signal

Now we need to react on the alarm signal of the smoke detector. But we want to react only if the LED is turned on, not if it is turn off. This is done by checking valueMask for being > 0. In that case there is a voltage applied to at least one input, therefore, the LED is on.

public void interrupt(int interruptMask, int valueMask) {
    if(valueMask > 0) {
        System.out.println("Fire! Fire!");
    }
}

That's it. If we would copy these three steps together in one file and execute it, we would have a working program that reads the alarm status of a hacked smoke detector and reacts on its alarm signal!

Currently the program just outputs a warning. There are several ways to extend this. For example, the program could send an email or a text message to notify someone about the alarm.

However, we do not meet all of our goals yet. The program is not yet robust enough. What happens if it can't connect on startup? What happens if the enumerate after an auto reconnect doesn't work?

What we need is error handling!

Step 4: Error handling and Logging

On startup, we need to try to connect until the connection works:

while(true) {
    try {
        ipcon.connect(host, port);
        break;
    } catch(java.net.UnknownHostException e) {
    } catch(java.io.IOException e) {
    } catch(com.tinkerforge.AlreadyConnectedException e) {
    }

    try {
        Thread.sleep(1000);
    } catch(InterruptedException ei) {
    }
}

and we need to try enumerating until the message goes through:

while(true) {
    try {
        ipcon.enumerate();
        break;
    } catch(com.tinkerforge.NotConnectedException e) {
    }

    try {
        Thread.sleep(1000);
    } catch(InterruptedException ei) {
    }
}

With these changes it is now possible to first start the program and connect the Master Brick afterwards.

We also have to deal with errors during the initialization:

if(enumerationType == IPConnection.ENUMERATION_TYPE_CONNECTED ||
   enumerationType == IPConnection.ENUMERATION_TYPE_AVAILABLE) {
    if(deviceIdentifier == BrickletIndustrialDigitalIn4.DEVICE_IDENTIFIER) {
        try {
            brickletIndustrialDigitalIn4 = new BrickletIndustrialDigitalIn4(uid, ipcon);
            brickletIndustrialDigitalIn4.setDebouncePeriod(10000);
            brickletIndustrialDigitalIn4.setInterrupt(15);
            brickletIndustrialDigitalIn4.addInterruptListener(this);
            System.out.println("Industrial Digital In 4 initialized");
        } catch(com.tinkerforge.TinkerforgeException e) {
            brickletIndustrialDigitalIn4 = null;
            System.out.println("Industrial Digital In 4 init failed: " + e);
        }
    }
}

Additionally we added some logging. With the logging we can later find out what exactly caused a potential problem.

For example, if we connect to the Master Brick via Wi-Fi and we have regular auto reconnects, it likely means that the Wi-Fi connection is not very stable.

Step 5: Everything put together

That's it! We are already done with our hacked smoke detector and all of the goals should be met.

Now all of the above put together (download):

import com.tinkerforge.IPConnection;
import com.tinkerforge.BrickletIndustrialDigitalIn4;

class SmokeListener implements IPConnection.EnumerateListener,
                               IPConnection.ConnectedListener,
                               BrickletIndustrialDigitalIn4.InterruptListener {
    private IPConnection ipcon = null;
    private BrickletIndustrialDigitalIn4 brickletIndustrialDigitalIn4 = null;

    public SmokeListener(IPConnection ipcon) {
        this.ipcon = ipcon;
    }

    public void interrupt(int interruptMask, int valueMask) {
        if(valueMask > 0) {
            System.out.println("Fire! Fire!");
        }
    }

    public void enumerate(String uid, String connectedUid, char position,
                          short[] hardwareVersion, short[] firmwareVersion,
                          int deviceIdentifier, short enumerationType) {
        if(enumerationType == IPConnection.ENUMERATION_TYPE_CONNECTED ||
           enumerationType == IPConnection.ENUMERATION_TYPE_AVAILABLE) {
            if(deviceIdentifier == BrickletIndustrialDigitalIn4.DEVICE_IDENTIFIER) {
                try {
                    brickletIndustrialDigitalIn4 = new BrickletIndustrialDigitalIn4(uid, ipcon);
                    brickletIndustrialDigitalIn4.setDebouncePeriod(10000);
                    brickletIndustrialDigitalIn4.setInterrupt(15);
                    brickletIndustrialDigitalIn4.addInterruptListener(this);
                    System.out.println("Industrial Digital In 4 initialized");
                } catch(com.tinkerforge.TinkerforgeException e) {
                    brickletIndustrialDigitalIn4 = null;
                    System.out.println("Industrial Digital In 4 init failed: " + e);
                }
            }
        }
    }

    public void connected(short connectedReason) {
        if(connectedReason == IPConnection.CONNECT_REASON_AUTO_RECONNECT) {
            System.out.println("Auto Reconnect");

            while(true) {
                try {
                    ipcon.enumerate();
                    break;
                } catch(com.tinkerforge.NotConnectedException e) {
                }

                try {
                    Thread.sleep(1000);
                } catch(InterruptedException ei) {
                }
            }
        }
    }
}

public class SmokeDetector {
    private static final String HOST = "localhost";
    private static final int PORT = 4223;
    private static IPConnection ipcon = null;
    private static SmokeListener smokeListener = null;

    public static void main(String args[]) {
        ipcon = new IPConnection();

        while(true) {
            try {
                ipcon.connect(HOST, PORT);
                break;
            } catch(com.tinkerforge.TinkerforgeException e) {
            }

            try {
                Thread.sleep(1000);
            } catch(InterruptedException ei) {
            }
        }

        smokeListener = new SmokeListener(ipcon);
        ipcon.addEnumerateListener(smokeListener);
        ipcon.addConnectedListener(smokeListener);

        while(true) {
            try {
                ipcon.enumerate();
                break;
            } catch(com.tinkerforge.NotConnectedException e) {
            }

            try {
                Thread.sleep(1000);
            } catch(InterruptedException ei) {
            }
        }

        try {
            System.out.println("Press key to exit"); System.in.read();
        } catch(java.io.IOException e) {
        }

        try {
            ipcon.disconnect();
        } catch(com.tinkerforge.NotConnectedException e) {
        }
    }
}