Skip to content

Getting Started with the FX2 Device

1. Overview

This document explains how to access Device Manager and change the initial password when using a BATCAM FX2 device for the first time.

Device Manager is a device management program for configuring BATCAM FX2 devices and monitoring their current status, accessed via the device IP address. For the full menu layout, see the Device Manager Menu document.

2. Factory Default Settings

Out of the factory, the network and accounts are configured as follows.

ItemDefaultDescription
Ethernet #1 IP address192.168.0.80Factory default
Ethernet #2 IP address192.168.0.81Factory default
Administrator accountID admin / password 1234Account cannot be deleted
Read-only accountID userStandard read-only user provided from the factory

💡 Note: admin/1234 is the factory default; you must change it to a new password on first login.

  • FX2 provides two wired Ethernet ports, and each supports both DHCP and STATIC IP. To change the IP address, see the network settings section of the Settings document.

  • To add or delete users or change passwords, see the User Management document.

3. Accessing Device Manager

  1. Set your PC to the same network range as the device (192.168.0.x).

  2. In your web browser’s address bar, enter http://192.168.0.80. (Based on the Ethernet #1 factory default IP.)

  3. Enter ID / PASSWORD: admin / 1234 to log in.

BATCAM FX2 Device Manager login screen - user ID and password fields

4. Changing the Initial Password

You must change the initial password on first login.

Screen for setting a new password after first login

Enter a new password. (1234 cannot be used as the password.)

  • The factory-provided admin account cannot be deleted. For details, see the User Management document.

5. Verifying the Connection

In the device REST API, GET /ping is a health-check endpoint that requires no authentication. Use it to quickly check network connectivity to the device.

Terminal window
curl http://192.168.0.80/ping
{"error": 0, "result": "pong"}
  • /ping aside, most device API endpoints require HTTP Basic or Bearer (JWT) authentication.

  • The full API documentation is available in the FX2 API Reference, and the live spec served directly by the device can be retrieved with GET http://{device_ip}/api-docs/json.

6. Troubleshooting

  • If you cannot connect:

    • Check that your PC is configured on the same subnet as the device (192.168.0.x).

    • ping 192.168.0.80 lets you check whether the device responds. Depending on which Ethernet port the device is connected to, the factory default is 192.168.0.80 for Ethernet #1 and 192.168.0.81 for Ethernet #2.

    • Settings — if the device’s network settings (DHCP/STATIC) have been changed, connect using the changed IP address instead.

  • If you need to restore the device to its factory state:

    • Settings provides a factory reset that restores the factory default settings above. Use caution: a factory reset erases all data, and the data cannot be recovered.

7. Next Steps

  • Device Manager Menu — Covers the full set of management features provided by Device Manager.

  • Settings — Explains network settings (DHCP/STATIC IP), restarting services, and performing a factory reset.

  • User Management — Explains how to add and delete users and change passwords.

  • FX Cloud Sign-up — Create an FX Cloud account to use account-based features such as linking your camera device.

  • Python Protobuf Example — Provides example code for receiving device data over REST and WebSocket + Protobuf.

  • FX2 API Reference — Provides the full specification of the device’s embedded REST API.