|
@@ -2,7 +2,7 @@
|
|
|
<h1 align="center">Barcode Generator</h1>
|
|
<h1 align="center">Barcode Generator</h1>
|
|
|
<p align="center">
|
|
<p align="center">
|
|
|
|
|
|
|
|
-A barcode generator for the Flipper Zero that supports **UPC-A**, **EAN-8**, **EAN-13**, **Code-39**, and **Code-128**[1]
|
|
|
|
|
|
|
+A barcode generator for the Flipper Zero that supports **UPC-A**, **EAN-8**, **EAN-13**, **Code-39**, **Codabar**, and **Code-128**[1]
|
|
|
</p>
|
|
</p>
|
|
|
|
|
|
|
|
Note: Barcode save locations have been moved from `/barcodes` to `/apps_data/barcodes`
|
|
Note: Barcode save locations have been moved from `/barcodes` to `/apps_data/barcodes`
|
|
@@ -10,6 +10,7 @@ Note: Barcode save locations have been moved from `/barcodes` to `/apps_data/bar
|
|
|
## Table of Contents
|
|
## Table of Contents
|
|
|
- [Table of Contents](#table-of-contents)
|
|
- [Table of Contents](#table-of-contents)
|
|
|
- [Installing](#installing)
|
|
- [Installing](#installing)
|
|
|
|
|
+- [Building](#building)
|
|
|
- [Usage](#usage)
|
|
- [Usage](#usage)
|
|
|
- [Creating a barcode](#creating-a-barcode)
|
|
- [Creating a barcode](#creating-a-barcode)
|
|
|
- [Editing a barcode](#editing-a-barcode)
|
|
- [Editing a barcode](#editing-a-barcode)
|
|
@@ -24,12 +25,21 @@ Note: Barcode save locations have been moved from `/barcodes` to `/apps_data/bar
|
|
|
2) Extract/unzip the `.zip` file onto your computer
|
|
2) Extract/unzip the `.zip` file onto your computer
|
|
|
3) Open qFlipper and go to the file manager
|
|
3) Open qFlipper and go to the file manager
|
|
|
4) Navigate to the `apps` folder
|
|
4) Navigate to the `apps` folder
|
|
|
-5) Drag & Drop the `.fap` file into the `apps` folder
|
|
|
|
|
-6) Navigate back to the root folder and create the folder `apps_data`, if not already there
|
|
|
|
|
|
|
+5) Drag & drop the `.fap` file into the `apps` folder
|
|
|
|
|
+6) Navigate back to the root folder of the SD card and create the folder `apps_data`, if not already there
|
|
|
7) Navigate into `apps_data` and create another folder called `barcode_data`
|
|
7) Navigate into `apps_data` and create another folder called `barcode_data`
|
|
|
8) Navigate into `barcode_data`
|
|
8) Navigate into `barcode_data`
|
|
|
-9) Drag & Drop the encoding txts (`code39_encodings.txt` & `code128_encodings.txt`) into the `barcode_data` folder
|
|
|
|
|
-
|
|
|
|
|
|
|
+9) Drag & drop the encoding txts (`code39_encodings.txt`, `code128_encodings.txt` & `codabar_encodings.txt`) into the `barcode_data` folder
|
|
|
|
|
+
|
|
|
|
|
+## Building
|
|
|
|
|
+1) Clone the [flipperzero-firmware](https://github.com/flipperdevices/flipperzero-firmware) repository or a firmware of your choice
|
|
|
|
|
+2) Clone this repository and put it in the `applications_user` folder
|
|
|
|
|
+3) Build this app by using the command `./fbt Barcode_App`
|
|
|
|
|
+4) Copy the `.fap` from `build\f7-firmware-D\.extapps\Barcode_App.fap` to `apps\Misc` using the qFlipper app
|
|
|
|
|
+5) While still in the qFlipper app, navigate to the root folder of the SD card and create the folder `apps_data`, if not already there
|
|
|
|
|
+6) Navigate into `apps_data` and create another folder called `barcode_data`
|
|
|
|
|
+7) Navigate into `barcode_data`
|
|
|
|
|
+8) Drag & drop the encoding txts (`code39_encodings.txt`, `code128_encodings.txt` & `codabar_encodings.txt`) from the `encoding_tables` folder in this repository into the `barcode_data` folder
|
|
|
|
|
|
|
|
## Usage
|
|
## Usage
|
|
|
|
|
|
|
@@ -39,6 +49,12 @@ Note: Barcode save locations have been moved from `/barcodes` to `/apps_data/bar
|
|
|
3) Enter your filename and then your barcode data
|
|
3) Enter your filename and then your barcode data
|
|
|
4) Click save
|
|
4) Click save
|
|
|
|
|
|
|
|
|
|
+**Note**: For Codabar barcodes, you must manually add the start and stop codes to the barcode data
|
|
|
|
|
+Start/Stop codes can be A, B, C, or D
|
|
|
|
|
+For example, if you wanted to represent `1234` as a barcode you will need to enter something like `A1234A`. (You can replace the letters A with either A, B, C, or D)
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
### Editing a barcode
|
|
### Editing a barcode
|
|
|
1) To edit a barcode click on `Edit Barcode`
|
|
1) To edit a barcode click on `Edit Barcode`
|
|
|
2) Next select the barcode file you want to edit
|
|
2) Next select the barcode file you want to edit
|