速報APP / 生產應用 / Breaker Panel

Breaker Panel

價格:免費

更新日期:2019-07-09

檔案大小:3.9M

目前版本:1.8

版本需求:Android 4.4 以上版本

官方網站:mailto:brandonhoffman1981@gmail.com

Breaker Panel(圖1)-速報App

Breaker Panel for home and business use. Allows users to create a dynamically sized circuit breaker panel and add/edit/delete breakers. Each breaker stores the breaker number, size (pole), amps, and description.

Next time you are wondering which breaker will turn off your kitchen lights, use the search function to see exactly which breaker to turn off.

*NOTE* If you are migrating over from the other Breaker Panel app that has been deprecated due to a lost signing key, follow the steps below to update your Dropbox or Local database file. This only applies if you were using the other version of Breaker Panel and had a Dropbox or local backup of your database.

Breaker Panel(圖2)-速報App

1. Save the database file to your computer from Dropbox (download the database from Dropbox in the Apps/BreakerPanel folder) or from your phone's storage (located in the BreakerPanel folder).

2. Once the database file has been downloaded, download an app called DB Browser for sqlite at this address (https://sqlitebrowser.org/).

3. Open the downloaded app, open your database that you downloaded and run the following commands (in the EXECUTE SQL tab):

Breaker Panel(圖3)-速報App

CREATE TEMPORARY TABLE breakers_backup (_id integer primary key, p_id integer not null, breaker_number integer not null, breaker_amp integer not null, breaker_size integer not null, breaker_description text not null, breaker_tandem text);

INSERT INTO breakers_backup SELECT _id, p_id, breaker_number, breaker_amp, breaker_size, breaker_description, breaker_tandem FROM breakers;

DROP TABLE breakers;

Breaker Panel(圖4)-速報App

CREATE TABLE breakers (_id integer primary key, p_id integer not null, breaker_number integer not null, breaker_amp integer not null, breaker_size integer not null, breaker_description text not null, tandem_description text);

INSERT INTO breakers SELECT _id, p_id, breaker_number, breaker_amp, breaker_size, breaker_description, breaker_tandem FROM breakers_backup;

DROP TABLE breakers_backup;

Breaker Panel(圖5)-速報App

4. Once this has been done, save the database and upload it to Dropbox to the same location (overwrite the old one) or place it on your phone storage at the same location (again overwrite the old one).

You can now restore your breaker panels for use. If this is too confusing I will gladly assist. Just send me an email.

Breaker Panel(圖6)-速報App