├── LICENSE ├── README.md ├── applications_user ├── bt_hid_kodi │ ├── application.fam │ ├── assets │ │ ├── Ble_connected_15x15.png │ │ ├── Ble_disconnected_15x15.png │ │ ├── Button_18x18.png │ │ ├── Ok_btn_9x9.png │ │ ├── Pin_back_arrow_10x8.png │ │ ├── Space_60x18.png │ │ └── Space_65x18.png │ ├── bt_remote_10px.png │ ├── hid.c │ ├── hid.h │ ├── hid_ble_10px.png │ ├── scenes │ │ ├── hid_scene.c │ │ ├── hid_scene.h │ │ ├── hid_scene_config.h │ │ └── hid_scene_main.c │ ├── transport_ble.c │ ├── views.h │ └── views │ │ ├── hid_keynote.c │ │ └── hid_keynote.h ├── mousejacker_ms │ ├── NRF24_Mouse_Jacker_icons.h │ ├── application.fam │ ├── images │ │ ├── badusb_10px.png │ │ └── sub1_10px.png │ ├── lib │ │ └── nrf24 │ │ │ ├── nrf24.c │ │ │ └── nrf24.h │ ├── mouse_10px.png │ ├── mousejacker.c │ ├── mousejacker_ducky.c │ └── mousejacker_ducky.h └── nrfsniff_ms │ ├── application.fam │ ├── lib │ └── nrf24 │ │ ├── nrf24.c │ │ └── nrf24.h │ ├── nrfsniff.c │ └── nrfsniff_10px.png ├── generator_433_868.py └── rawsub_decoder ├── README.md └── decode_ook_manchester.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/README.md -------------------------------------------------------------------------------- /applications_user/bt_hid_kodi/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/bt_hid_kodi/application.fam -------------------------------------------------------------------------------- /applications_user/bt_hid_kodi/assets/Ble_connected_15x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/bt_hid_kodi/assets/Ble_connected_15x15.png -------------------------------------------------------------------------------- /applications_user/bt_hid_kodi/assets/Ble_disconnected_15x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/bt_hid_kodi/assets/Ble_disconnected_15x15.png -------------------------------------------------------------------------------- /applications_user/bt_hid_kodi/assets/Button_18x18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/bt_hid_kodi/assets/Button_18x18.png -------------------------------------------------------------------------------- /applications_user/bt_hid_kodi/assets/Ok_btn_9x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/bt_hid_kodi/assets/Ok_btn_9x9.png -------------------------------------------------------------------------------- /applications_user/bt_hid_kodi/assets/Pin_back_arrow_10x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/bt_hid_kodi/assets/Pin_back_arrow_10x8.png -------------------------------------------------------------------------------- /applications_user/bt_hid_kodi/assets/Space_60x18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/bt_hid_kodi/assets/Space_60x18.png -------------------------------------------------------------------------------- /applications_user/bt_hid_kodi/assets/Space_65x18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/bt_hid_kodi/assets/Space_65x18.png -------------------------------------------------------------------------------- /applications_user/bt_hid_kodi/bt_remote_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/bt_hid_kodi/bt_remote_10px.png -------------------------------------------------------------------------------- /applications_user/bt_hid_kodi/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/bt_hid_kodi/hid.c -------------------------------------------------------------------------------- /applications_user/bt_hid_kodi/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/bt_hid_kodi/hid.h -------------------------------------------------------------------------------- /applications_user/bt_hid_kodi/hid_ble_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/bt_hid_kodi/hid_ble_10px.png -------------------------------------------------------------------------------- /applications_user/bt_hid_kodi/scenes/hid_scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/bt_hid_kodi/scenes/hid_scene.c -------------------------------------------------------------------------------- /applications_user/bt_hid_kodi/scenes/hid_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/bt_hid_kodi/scenes/hid_scene.h -------------------------------------------------------------------------------- /applications_user/bt_hid_kodi/scenes/hid_scene_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/bt_hid_kodi/scenes/hid_scene_config.h -------------------------------------------------------------------------------- /applications_user/bt_hid_kodi/scenes/hid_scene_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/bt_hid_kodi/scenes/hid_scene_main.c -------------------------------------------------------------------------------- /applications_user/bt_hid_kodi/transport_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/bt_hid_kodi/transport_ble.c -------------------------------------------------------------------------------- /applications_user/bt_hid_kodi/views.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/bt_hid_kodi/views.h -------------------------------------------------------------------------------- /applications_user/bt_hid_kodi/views/hid_keynote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/bt_hid_kodi/views/hid_keynote.c -------------------------------------------------------------------------------- /applications_user/bt_hid_kodi/views/hid_keynote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/bt_hid_kodi/views/hid_keynote.h -------------------------------------------------------------------------------- /applications_user/mousejacker_ms/NRF24_Mouse_Jacker_icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/mousejacker_ms/NRF24_Mouse_Jacker_icons.h -------------------------------------------------------------------------------- /applications_user/mousejacker_ms/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/mousejacker_ms/application.fam -------------------------------------------------------------------------------- /applications_user/mousejacker_ms/images/badusb_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/mousejacker_ms/images/badusb_10px.png -------------------------------------------------------------------------------- /applications_user/mousejacker_ms/images/sub1_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/mousejacker_ms/images/sub1_10px.png -------------------------------------------------------------------------------- /applications_user/mousejacker_ms/lib/nrf24/nrf24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/mousejacker_ms/lib/nrf24/nrf24.c -------------------------------------------------------------------------------- /applications_user/mousejacker_ms/lib/nrf24/nrf24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/mousejacker_ms/lib/nrf24/nrf24.h -------------------------------------------------------------------------------- /applications_user/mousejacker_ms/mouse_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/mousejacker_ms/mouse_10px.png -------------------------------------------------------------------------------- /applications_user/mousejacker_ms/mousejacker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/mousejacker_ms/mousejacker.c -------------------------------------------------------------------------------- /applications_user/mousejacker_ms/mousejacker_ducky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/mousejacker_ms/mousejacker_ducky.c -------------------------------------------------------------------------------- /applications_user/mousejacker_ms/mousejacker_ducky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/mousejacker_ms/mousejacker_ducky.h -------------------------------------------------------------------------------- /applications_user/nrfsniff_ms/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/nrfsniff_ms/application.fam -------------------------------------------------------------------------------- /applications_user/nrfsniff_ms/lib/nrf24/nrf24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/nrfsniff_ms/lib/nrf24/nrf24.c -------------------------------------------------------------------------------- /applications_user/nrfsniff_ms/lib/nrf24/nrf24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/nrfsniff_ms/lib/nrf24/nrf24.h -------------------------------------------------------------------------------- /applications_user/nrfsniff_ms/nrfsniff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/nrfsniff_ms/nrfsniff.c -------------------------------------------------------------------------------- /applications_user/nrfsniff_ms/nrfsniff_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/applications_user/nrfsniff_ms/nrfsniff_10px.png -------------------------------------------------------------------------------- /generator_433_868.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/generator_433_868.py -------------------------------------------------------------------------------- /rawsub_decoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/rawsub_decoder/README.md -------------------------------------------------------------------------------- /rawsub_decoder/decode_ook_manchester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coded-with-claws/flipperzero-tools/HEAD/rawsub_decoder/decode_ook_manchester.py --------------------------------------------------------------------------------