├── .clang-format ├── bluetooth_applications ├── README.md ├── bluetooth_teleop │ ├── application.fam │ ├── bluetooth_teleop_app.c │ ├── bluetooth_teleop_app.h │ ├── bt_teleop_icon_10x10px.png │ ├── images │ │ ├── arrow_down_empty_14x15.png │ │ ├── arrow_down_filled_14x15.png │ │ ├── arrow_left_empty_14x15.png │ │ ├── arrow_left_filled_14x15.png │ │ ├── arrow_right_empty_14x15.png │ │ ├── arrow_right_filled_14x15.png │ │ ├── arrow_up_empty_14x15.png │ │ ├── arrow_up_filled_14x15.png │ │ ├── circles_64x64.png │ │ ├── ok_empty_14x14.png │ │ └── ok_filled_14x14.png │ └── views │ │ ├── control.c │ │ ├── control.h │ │ ├── wait_connection.c │ │ └── wait_connection.h └── bt_serial_example │ ├── application.fam │ ├── bt_serial_example_app.c │ ├── bt_serial_example_app.h │ └── emoji_smile_icon_10x10px.png └── example_applications ├── README.md ├── adc_example ├── adc_example_app.c ├── adc_example_app.h ├── application.fam └── emoji_smile_icon_10x10px.png ├── example_1 ├── application.fam ├── emoji_smile_icon_10x10px.png └── example_1_app.c ├── example_2 ├── application.fam ├── emoji_smile_icon_10x10px.png ├── example_2_app.c └── example_2_app.h ├── example_3 ├── application.fam ├── emoji_smile_icon_10x10px.png ├── example_3_app.c ├── example_3_app.h └── images │ └── amperka_ru_logo_128x35px.png ├── example_4 ├── application.fam ├── emoji_smile_icon_10x10px.png ├── example_4_app.c ├── example_4_app.h └── images │ └── amperka_ru_logo_128x35px.png ├── example_5 ├── application.fam ├── emoji_smile_icon_10x10px.png ├── example_5_app.c ├── example_5_app.h └── images │ └── amperka_ru_logo_128x35px.png └── example_6 ├── application.fam ├── emoji_smile_icon_10x10px.png ├── example_6_app.c └── example_6_app.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/.clang-format -------------------------------------------------------------------------------- /bluetooth_applications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/README.md -------------------------------------------------------------------------------- /bluetooth_applications/bluetooth_teleop/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bluetooth_teleop/application.fam -------------------------------------------------------------------------------- /bluetooth_applications/bluetooth_teleop/bluetooth_teleop_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bluetooth_teleop/bluetooth_teleop_app.c -------------------------------------------------------------------------------- /bluetooth_applications/bluetooth_teleop/bluetooth_teleop_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bluetooth_teleop/bluetooth_teleop_app.h -------------------------------------------------------------------------------- /bluetooth_applications/bluetooth_teleop/bt_teleop_icon_10x10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bluetooth_teleop/bt_teleop_icon_10x10px.png -------------------------------------------------------------------------------- /bluetooth_applications/bluetooth_teleop/images/arrow_down_empty_14x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bluetooth_teleop/images/arrow_down_empty_14x15.png -------------------------------------------------------------------------------- /bluetooth_applications/bluetooth_teleop/images/arrow_down_filled_14x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bluetooth_teleop/images/arrow_down_filled_14x15.png -------------------------------------------------------------------------------- /bluetooth_applications/bluetooth_teleop/images/arrow_left_empty_14x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bluetooth_teleop/images/arrow_left_empty_14x15.png -------------------------------------------------------------------------------- /bluetooth_applications/bluetooth_teleop/images/arrow_left_filled_14x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bluetooth_teleop/images/arrow_left_filled_14x15.png -------------------------------------------------------------------------------- /bluetooth_applications/bluetooth_teleop/images/arrow_right_empty_14x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bluetooth_teleop/images/arrow_right_empty_14x15.png -------------------------------------------------------------------------------- /bluetooth_applications/bluetooth_teleop/images/arrow_right_filled_14x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bluetooth_teleop/images/arrow_right_filled_14x15.png -------------------------------------------------------------------------------- /bluetooth_applications/bluetooth_teleop/images/arrow_up_empty_14x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bluetooth_teleop/images/arrow_up_empty_14x15.png -------------------------------------------------------------------------------- /bluetooth_applications/bluetooth_teleop/images/arrow_up_filled_14x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bluetooth_teleop/images/arrow_up_filled_14x15.png -------------------------------------------------------------------------------- /bluetooth_applications/bluetooth_teleop/images/circles_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bluetooth_teleop/images/circles_64x64.png -------------------------------------------------------------------------------- /bluetooth_applications/bluetooth_teleop/images/ok_empty_14x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bluetooth_teleop/images/ok_empty_14x14.png -------------------------------------------------------------------------------- /bluetooth_applications/bluetooth_teleop/images/ok_filled_14x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bluetooth_teleop/images/ok_filled_14x14.png -------------------------------------------------------------------------------- /bluetooth_applications/bluetooth_teleop/views/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bluetooth_teleop/views/control.c -------------------------------------------------------------------------------- /bluetooth_applications/bluetooth_teleop/views/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bluetooth_teleop/views/control.h -------------------------------------------------------------------------------- /bluetooth_applications/bluetooth_teleop/views/wait_connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bluetooth_teleop/views/wait_connection.c -------------------------------------------------------------------------------- /bluetooth_applications/bluetooth_teleop/views/wait_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bluetooth_teleop/views/wait_connection.h -------------------------------------------------------------------------------- /bluetooth_applications/bt_serial_example/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bt_serial_example/application.fam -------------------------------------------------------------------------------- /bluetooth_applications/bt_serial_example/bt_serial_example_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bt_serial_example/bt_serial_example_app.c -------------------------------------------------------------------------------- /bluetooth_applications/bt_serial_example/bt_serial_example_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bt_serial_example/bt_serial_example_app.h -------------------------------------------------------------------------------- /bluetooth_applications/bt_serial_example/emoji_smile_icon_10x10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/bluetooth_applications/bt_serial_example/emoji_smile_icon_10x10px.png -------------------------------------------------------------------------------- /example_applications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/README.md -------------------------------------------------------------------------------- /example_applications/adc_example/adc_example_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/adc_example/adc_example_app.c -------------------------------------------------------------------------------- /example_applications/adc_example/adc_example_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/adc_example/adc_example_app.h -------------------------------------------------------------------------------- /example_applications/adc_example/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/adc_example/application.fam -------------------------------------------------------------------------------- /example_applications/adc_example/emoji_smile_icon_10x10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/adc_example/emoji_smile_icon_10x10px.png -------------------------------------------------------------------------------- /example_applications/example_1/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_1/application.fam -------------------------------------------------------------------------------- /example_applications/example_1/emoji_smile_icon_10x10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_1/emoji_smile_icon_10x10px.png -------------------------------------------------------------------------------- /example_applications/example_1/example_1_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_1/example_1_app.c -------------------------------------------------------------------------------- /example_applications/example_2/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_2/application.fam -------------------------------------------------------------------------------- /example_applications/example_2/emoji_smile_icon_10x10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_2/emoji_smile_icon_10x10px.png -------------------------------------------------------------------------------- /example_applications/example_2/example_2_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_2/example_2_app.c -------------------------------------------------------------------------------- /example_applications/example_2/example_2_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_2/example_2_app.h -------------------------------------------------------------------------------- /example_applications/example_3/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_3/application.fam -------------------------------------------------------------------------------- /example_applications/example_3/emoji_smile_icon_10x10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_3/emoji_smile_icon_10x10px.png -------------------------------------------------------------------------------- /example_applications/example_3/example_3_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_3/example_3_app.c -------------------------------------------------------------------------------- /example_applications/example_3/example_3_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_3/example_3_app.h -------------------------------------------------------------------------------- /example_applications/example_3/images/amperka_ru_logo_128x35px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_3/images/amperka_ru_logo_128x35px.png -------------------------------------------------------------------------------- /example_applications/example_4/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_4/application.fam -------------------------------------------------------------------------------- /example_applications/example_4/emoji_smile_icon_10x10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_4/emoji_smile_icon_10x10px.png -------------------------------------------------------------------------------- /example_applications/example_4/example_4_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_4/example_4_app.c -------------------------------------------------------------------------------- /example_applications/example_4/example_4_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_4/example_4_app.h -------------------------------------------------------------------------------- /example_applications/example_4/images/amperka_ru_logo_128x35px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_4/images/amperka_ru_logo_128x35px.png -------------------------------------------------------------------------------- /example_applications/example_5/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_5/application.fam -------------------------------------------------------------------------------- /example_applications/example_5/emoji_smile_icon_10x10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_5/emoji_smile_icon_10x10px.png -------------------------------------------------------------------------------- /example_applications/example_5/example_5_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_5/example_5_app.c -------------------------------------------------------------------------------- /example_applications/example_5/example_5_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_5/example_5_app.h -------------------------------------------------------------------------------- /example_applications/example_5/images/amperka_ru_logo_128x35px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_5/images/amperka_ru_logo_128x35px.png -------------------------------------------------------------------------------- /example_applications/example_6/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_6/application.fam -------------------------------------------------------------------------------- /example_applications/example_6/emoji_smile_icon_10x10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_6/emoji_smile_icon_10x10px.png -------------------------------------------------------------------------------- /example_applications/example_6/example_6_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_6/example_6_app.c -------------------------------------------------------------------------------- /example_applications/example_6/example_6_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amperka/flipperzero-examples/HEAD/example_applications/example_6/example_6_app.h --------------------------------------------------------------------------------