Skip to content

Commit

Permalink
add new app
Browse files Browse the repository at this point in the history
  • Loading branch information
xMasterX committed Dec 22, 2023
1 parent 8350da6 commit 9a9d87e
Show file tree
Hide file tree
Showing 20 changed files with 1,710 additions and 0 deletions.
1 change: 1 addition & 0 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ The Flipper and its community wouldn't be as rich as it is without your contribu
| QR Code | ![Tools Badge] | [by bmatcuk](https://github.com/bmatcuk/flipperzero-qrcode) | | ![None Badge] |
| Resistance calculator | ![Tools Badge] | [by instantiator](https://github.com/instantiator/flipper-zero-experimental-apps) | | [![UFW Badge]](https://lab.flipper.net/apps/resistors) |
| Simple calendar app | ![Tools Badge] | [by Adiras](https://github.com/Adiras/flipperzero-calendar) | | ![None Badge] |
| Programmer Calculator | ![Tools Badge] | [by armixz](https://github.com/armixz/Flipper-Zero-Programmer-Calculator) | | ![None Badge] |
| USB HID Autofire | ![USB Badge] | [by pbek](https://github.com/pbek/usb_hid_autofire) | | ![None Badge] |
| USB Consumer Control | ![USB Badge] | [by WithSecureLabs](https://github.com/WithSecureLabs/usb-consumer-control/tree/main) | | ![None Badge] |

Expand Down
2 changes: 2 additions & 0 deletions non_catalog_apps/prog_calculator/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
52 changes: 52 additions & 0 deletions non_catalog_apps/prog_calculator/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Prerequisites
*.d

# Object files
*.o
*.ko
*.obj
*.elf

# Linker output
*.ilk
*.map
*.exp

# Precompiled Headers
*.gch
*.pch

# Libraries
*.lib
*.a
*.la
*.lo

# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib

# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex

# Debug files
*.dSYM/
*.su
*.idb
*.pdb

# Kernel Module Compile Results
*.mod*
*.cmd
.tmp_versions/
modules.order
Module.symvers
Mkfile.old
dkms.conf
674 changes: 674 additions & 0 deletions non_catalog_apps/prog_calculator/LICENSE

Large diffs are not rendered by default.

16 changes: 16 additions & 0 deletions non_catalog_apps/prog_calculator/application.fam
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
App(
appid="programmercalc",
name="Programmer Calculator",
apptype=FlipperAppType.EXTERNAL,
entry_point="calculator_app",
cdefines=["APP_CALCULATOR"],
requires=["gui"],
stack_size=1 * 1024,
order=45,
fap_icon="calcIcon.png",
fap_category="Tools",
fap_author="@armixz",
fap_weburl="https://github.com/armixz/Flipper-Zero-Programmer-Calculator",
fap_version="0.8",
fap_description="Calculator, for Programmers!",
)
Binary file added non_catalog_apps/prog_calculator/calcIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 9a9d87e

Please sign in to comment.