Skip to content

Commit a2cec02

Browse files
committed
Squashed 'airmouse/' changes from abac5b5..872ed96
872ed96 update apps f80911f move apps REVERT: abac5b5 Update CHANGELOG.md REVERT: c5d1b5e Update Changelog REVERT: 06b91a0 Fix Rotation return value REVERT: 9d4f47b Improve tracking loop encapsulation REVERT: 9a580e5 Fix NULL pointer dereference REVERT: f383c5f Merge pull request #12 from hedger/patch-1 REVERT: b04701c Updated category REVERT: ec6b601 Updated verison in application.fam REVERT: 1006df3 Update application.fam REVERT: de2050d Fix icon REVERT: a497f2f Update DESCRIPTION.md REVERT: 0b27318 Update DESCRIPTION.md REVERT: 8e298b8 Update CHANGELOG.md REVERT: 1c535de Update DESCRIPTION.md REVERT: 8412b23 Create DESCRIPTION.md REVERT: 66f145b Update application.fam REVERT: 5376c64 Add files via upload REVERT: 3d3effc Delete icon.png REVERT: 91ee0a1 Update application.fam REVERT: 2a37fa6 Add icon REVERT: e001a1f Add screenshots REVERT: 2ee8fa0 Create CHANGELOG.md REVERT: a4dbeb5 Remove unneeded line REVERT: c805b7d Update download link REVERT: 5e2c1f8 Merge pull request #6 from playmean/fam_sources REVERT: 8f2eefc Application .fap download badge REVERT: 1942ea9 Specifying sources for building in manifest REVERT: 98b5f70 Fix components in BOM REVERT: 42607a0 Update README.md REVERT: 01e960d Update README.md REVERT: 05c5f45 Format and make scrolling more intuitive REVERT: 6f45b0e Merge pull request #3 from rorosaurus/main REVERT: 08b94b1 fix button direction to match flipper orientation REVERT: 7007db8 adjust button function (add scrolling) REVERT: 971a8f6 Use threading in Bluetooth mode to improve responsiveness REVERT: 4966e1f Update README.md REVERT: 121b01e Update README.md REVERT: fd8fc09 Update README.md REVERT: 136c61a Update README.md REVERT: 4f4da2f Nits REVERT: e2ca3ce Update README.md REVERT: 2ff9b92 Update README.md REVERT: 886e93f Add some notes REVERT: c685c3b fbt format, switch to bmi160 REVERT: 1954e3b fbt format everything REVERT: 0553ae1 Initial commit REVERT: 3930cc1 Initial commit git-subtree-dir: airmouse git-subtree-split: 872ed96
1 parent abac5b5 commit a2cec02

17 files changed

+3
-84
lines changed

CHANGELOG.md

-35
This file was deleted.

DESCRIPTION.md

-29
This file was deleted.

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Flipper Air Mouse
22

3-
[![FlipC.org](https://flipc.org/ginkage/FlippAirMouse/badge)](https://flipc.org/ginkage/FlippAirMouse)
4-
53
## Brief
64

75
> "You can turn anything into an air mouse if you're brave enough"

air_mouse.c

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#include "air_mouse.h"
22

33
#include <furi.h>
4-
#include <dolphin/dolphin.h>
5-
64
#include "tracking/imu/imu.h"
75

86
#define TAG "AirMouseApp"

application.fam

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
App(
22
appid="air_mouse",
3-
name="Air Mouse",
3+
name="[BMI160] Air Mouse",
44
apptype=FlipperAppType.EXTERNAL,
55
entry_point="air_mouse_app",
66
stack_size=10 * 1024,
77
fap_category="GPIO",
8-
fap_icon="icon.png",
8+
fap_icon="mouse_10px.png",
99
fap_version="0.8",
1010
sources=["*.c", "*.cc"],
1111
)

icon.png

-7.45 KB
Binary file not shown.

mouse_10px.png

1.6 KB
Loading

schematic/airmouse_bom.csv

-5
This file was deleted.

schematic/airmouse_cpl.csv

-8
This file was deleted.

schematic/airmouse_gerber.zip

-6.53 KB
Binary file not shown.

schematic/flipper.jpg

-44 KB
Binary file not shown.

schematic/render.png

-43.4 KB
Binary file not shown.

schematic/schematic.png

-40.2 KB
Binary file not shown.

screenshot1.png

-1.41 KB
Binary file not shown.

screenshot2.png

-1.48 KB
Binary file not shown.

screenshot3.png

-1.32 KB
Binary file not shown.

tracking/calibration_data.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#define CALIBRATION_DATA_VER (1)
1010
#define CALIBRATION_DATA_FILE_NAME ".calibration.data"
11-
#define CALIBRATION_DATA_PATH INT_PATH(CALIBRATION_DATA_FILE_NAME)
11+
#define CALIBRATION_DATA_PATH EXT_PATH(CALIBRATION_DATA_FILE_NAME)
1212
#define CALIBRATION_DATA_MAGIC (0x23)
1313

1414
#define CALIBRATION_DATA_SAVE(x) \

0 commit comments

Comments
 (0)