├── .gitattributes ├── .github └── FUNDING.yml ├── Application ├── .gitattributes ├── .gitignore ├── LICENSE ├── app.dev.json ├── app.json ├── app │ ├── _layout.tsx │ ├── analyzer.tsx │ ├── connect.tsx │ ├── home.tsx │ ├── index.native.tsx │ ├── index.tsx │ ├── index.web.tsx │ ├── play.tsx │ ├── record.tsx │ └── settings.tsx ├── assets │ ├── fonts │ │ ├── LICENSE │ │ ├── Press_Start_2P.ttf │ │ └── Roboto.ttf │ ├── images │ │ ├── favicon.png │ │ ├── icon.png │ │ └── splash-icon.png │ └── svg │ │ └── esp32.jsx ├── components │ ├── back.tsx │ └── warning.tsx ├── eas.json ├── eslint.config.js ├── gzip.js ├── package.json ├── providers │ ├── GlobalContext.native.tsx │ ├── GlobalContext.web.tsx │ ├── packets.js │ └── utils.ts └── tsconfig.json ├── Arduino ├── BKFZ_SubGHz │ ├── BKFZ_SubGHz.ino │ ├── LICENSE │ ├── ble_interface.cpp │ ├── data │ │ ├── +not-found.html.gz │ │ ├── _expo │ │ │ ├── .routes.json.gz │ │ │ └── static │ │ │ │ └── js │ │ │ │ └── web │ │ │ │ └── entry-eb657f3c0d33382b21ed7dcc3d6b91ee.js.gz │ │ ├── _sitemap.html.gz │ │ ├── analyzer.html.gz │ │ ├── assets │ │ │ ├── assets │ │ │ │ └── fonts │ │ │ │ │ ├── Press_Start_2P.f98cd910425bf727bd54ce767a9b6884.ttf.gz │ │ │ │ │ └── Roboto.3aa911d4a1e76c8946952fe744ce7434.ttf.gz │ │ │ └── node_modules │ │ │ │ └── @expo │ │ │ │ └── vector-icons │ │ │ │ └── build │ │ │ │ └── vendor │ │ │ │ └── react-native-vector-icons │ │ │ │ └── Fonts │ │ │ │ ├── Feather.ca4b48e04dc1ce10bfbddb262c8b835f.ttf.gz │ │ │ │ └── MaterialIcons.4e85bc9ebe07e0340c9c4fc2f6c38908.ttf.gz │ │ ├── connect.html.gz │ │ ├── home.html.gz │ │ ├── index.html.gz │ │ ├── play.html.gz │ │ ├── record.html.gz │ │ └── settings.html.gz │ ├── headers │ │ ├── config.h │ │ ├── globals.h │ │ ├── interface.h │ │ ├── packets.h │ │ ├── presets.h │ │ └── user_settings.h │ ├── presets.cpp │ ├── user_settings.cpp │ └── wifi_interface.cpp └── LICENSE ├── CHANGELOG.md ├── KiCad_PCB ├── BKFZ SubGHz Gerber.zip ├── BKFZ SubGHz │ ├── BKFZ SubGHz.kicad_pcb │ ├── BKFZ SubGHz.kicad_prl │ ├── BKFZ SubGHz.kicad_pro │ ├── BKFZ SubGHz.kicad_sch │ ├── BKFZ_SubGHz.bak │ ├── BKFZ_SubGHz.kicad_sym │ ├── fp-info-cache │ └── sym-lib-table ├── LICENSE └── README.md ├── LICENSE ├── Other └── Assembly Photos │ ├── Components │ ├── All Components.jpeg │ ├── CC1101 433MHz.jpeg │ ├── ESP32 D1 Mini.jpeg │ ├── Headers (to solder).jpeg │ ├── JST Connector (female).jpeg │ ├── Latching Button (I-O).jpeg │ ├── Lithium Battery (2000mAh).jpeg │ └── TP4056 Module.jpeg │ ├── Step 1. Soldering to PCB (after).jpeg │ ├── Step 1. Soldering to PCB (before).jpeg │ ├── Step 2. Soldering the ESP32 (after).jpeg │ ├── Step 2. Soldering the ESP32 (before).jpeg │ ├── Step 3. Solder JST to TP4056 (after).jpeg │ ├── Step 3. Solder JST to TP4056 (before).jpeg │ ├── Step 4. Extra TP4056 Wires (after).jpeg │ ├── Step 4. Extra TP4056 Wires (before).jpeg │ ├── Step 5. Soldering to Latching Button (#1).jpeg │ ├── Step 5. Soldering to Latching Button (#2).jpeg │ ├── Step 6. Completing Build.jpeg │ ├── Step 7. Attaching the Battery.jpeg │ └── Step 8. Final Product.jpeg └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: brianwalczak 2 | -------------------------------------------------------------------------------- /Application/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/.gitattributes -------------------------------------------------------------------------------- /Application/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/.gitignore -------------------------------------------------------------------------------- /Application/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/LICENSE -------------------------------------------------------------------------------- /Application/app.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/app.dev.json -------------------------------------------------------------------------------- /Application/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/app.json -------------------------------------------------------------------------------- /Application/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/app/_layout.tsx -------------------------------------------------------------------------------- /Application/app/analyzer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/app/analyzer.tsx -------------------------------------------------------------------------------- /Application/app/connect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/app/connect.tsx -------------------------------------------------------------------------------- /Application/app/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/app/home.tsx -------------------------------------------------------------------------------- /Application/app/index.native.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/app/index.native.tsx -------------------------------------------------------------------------------- /Application/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/app/index.tsx -------------------------------------------------------------------------------- /Application/app/index.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/app/index.web.tsx -------------------------------------------------------------------------------- /Application/app/play.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/app/play.tsx -------------------------------------------------------------------------------- /Application/app/record.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/app/record.tsx -------------------------------------------------------------------------------- /Application/app/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/app/settings.tsx -------------------------------------------------------------------------------- /Application/assets/fonts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/assets/fonts/LICENSE -------------------------------------------------------------------------------- /Application/assets/fonts/Press_Start_2P.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/assets/fonts/Press_Start_2P.ttf -------------------------------------------------------------------------------- /Application/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /Application/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/assets/images/favicon.png -------------------------------------------------------------------------------- /Application/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/assets/images/icon.png -------------------------------------------------------------------------------- /Application/assets/images/splash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/assets/images/splash-icon.png -------------------------------------------------------------------------------- /Application/assets/svg/esp32.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/assets/svg/esp32.jsx -------------------------------------------------------------------------------- /Application/components/back.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/components/back.tsx -------------------------------------------------------------------------------- /Application/components/warning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/components/warning.tsx -------------------------------------------------------------------------------- /Application/eas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/eas.json -------------------------------------------------------------------------------- /Application/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/eslint.config.js -------------------------------------------------------------------------------- /Application/gzip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/gzip.js -------------------------------------------------------------------------------- /Application/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/package.json -------------------------------------------------------------------------------- /Application/providers/GlobalContext.native.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/providers/GlobalContext.native.tsx -------------------------------------------------------------------------------- /Application/providers/GlobalContext.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/providers/GlobalContext.web.tsx -------------------------------------------------------------------------------- /Application/providers/packets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/providers/packets.js -------------------------------------------------------------------------------- /Application/providers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/providers/utils.ts -------------------------------------------------------------------------------- /Application/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Application/tsconfig.json -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/BKFZ_SubGHz.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/BKFZ_SubGHz.ino -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/LICENSE -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/ble_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/ble_interface.cpp -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/data/+not-found.html.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/data/+not-found.html.gz -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/data/_expo/.routes.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/data/_expo/.routes.json.gz -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/data/_expo/static/js/web/entry-eb657f3c0d33382b21ed7dcc3d6b91ee.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/data/_expo/static/js/web/entry-eb657f3c0d33382b21ed7dcc3d6b91ee.js.gz -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/data/_sitemap.html.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/data/_sitemap.html.gz -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/data/analyzer.html.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/data/analyzer.html.gz -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/data/assets/assets/fonts/Press_Start_2P.f98cd910425bf727bd54ce767a9b6884.ttf.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/data/assets/assets/fonts/Press_Start_2P.f98cd910425bf727bd54ce767a9b6884.ttf.gz -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/data/assets/assets/fonts/Roboto.3aa911d4a1e76c8946952fe744ce7434.ttf.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/data/assets/assets/fonts/Roboto.3aa911d4a1e76c8946952fe744ce7434.ttf.gz -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/data/assets/node_modules/@expo/vector-icons/build/vendor/react-native-vector-icons/Fonts/Feather.ca4b48e04dc1ce10bfbddb262c8b835f.ttf.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/data/assets/node_modules/@expo/vector-icons/build/vendor/react-native-vector-icons/Fonts/Feather.ca4b48e04dc1ce10bfbddb262c8b835f.ttf.gz -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/data/assets/node_modules/@expo/vector-icons/build/vendor/react-native-vector-icons/Fonts/MaterialIcons.4e85bc9ebe07e0340c9c4fc2f6c38908.ttf.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/data/assets/node_modules/@expo/vector-icons/build/vendor/react-native-vector-icons/Fonts/MaterialIcons.4e85bc9ebe07e0340c9c4fc2f6c38908.ttf.gz -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/data/connect.html.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/data/connect.html.gz -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/data/home.html.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/data/home.html.gz -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/data/index.html.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/data/index.html.gz -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/data/play.html.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/data/play.html.gz -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/data/record.html.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/data/record.html.gz -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/data/settings.html.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/data/settings.html.gz -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/headers/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/headers/config.h -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/headers/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/headers/globals.h -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/headers/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/headers/interface.h -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/headers/packets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/headers/packets.h -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/headers/presets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/headers/presets.h -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/headers/user_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/headers/user_settings.h -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/presets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/presets.cpp -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/user_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/user_settings.cpp -------------------------------------------------------------------------------- /Arduino/BKFZ_SubGHz/wifi_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/BKFZ_SubGHz/wifi_interface.cpp -------------------------------------------------------------------------------- /Arduino/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Arduino/LICENSE -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /KiCad_PCB/BKFZ SubGHz Gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/KiCad_PCB/BKFZ SubGHz Gerber.zip -------------------------------------------------------------------------------- /KiCad_PCB/BKFZ SubGHz/BKFZ SubGHz.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/KiCad_PCB/BKFZ SubGHz/BKFZ SubGHz.kicad_pcb -------------------------------------------------------------------------------- /KiCad_PCB/BKFZ SubGHz/BKFZ SubGHz.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/KiCad_PCB/BKFZ SubGHz/BKFZ SubGHz.kicad_prl -------------------------------------------------------------------------------- /KiCad_PCB/BKFZ SubGHz/BKFZ SubGHz.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/KiCad_PCB/BKFZ SubGHz/BKFZ SubGHz.kicad_pro -------------------------------------------------------------------------------- /KiCad_PCB/BKFZ SubGHz/BKFZ SubGHz.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/KiCad_PCB/BKFZ SubGHz/BKFZ SubGHz.kicad_sch -------------------------------------------------------------------------------- /KiCad_PCB/BKFZ SubGHz/BKFZ_SubGHz.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/KiCad_PCB/BKFZ SubGHz/BKFZ_SubGHz.bak -------------------------------------------------------------------------------- /KiCad_PCB/BKFZ SubGHz/BKFZ_SubGHz.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/KiCad_PCB/BKFZ SubGHz/BKFZ_SubGHz.kicad_sym -------------------------------------------------------------------------------- /KiCad_PCB/BKFZ SubGHz/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/KiCad_PCB/BKFZ SubGHz/fp-info-cache -------------------------------------------------------------------------------- /KiCad_PCB/BKFZ SubGHz/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/KiCad_PCB/BKFZ SubGHz/sym-lib-table -------------------------------------------------------------------------------- /KiCad_PCB/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/KiCad_PCB/LICENSE -------------------------------------------------------------------------------- /KiCad_PCB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/KiCad_PCB/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/LICENSE -------------------------------------------------------------------------------- /Other/Assembly Photos/Components/All Components.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Other/Assembly Photos/Components/All Components.jpeg -------------------------------------------------------------------------------- /Other/Assembly Photos/Components/CC1101 433MHz.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Other/Assembly Photos/Components/CC1101 433MHz.jpeg -------------------------------------------------------------------------------- /Other/Assembly Photos/Components/ESP32 D1 Mini.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Other/Assembly Photos/Components/ESP32 D1 Mini.jpeg -------------------------------------------------------------------------------- /Other/Assembly Photos/Components/Headers (to solder).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Other/Assembly Photos/Components/Headers (to solder).jpeg -------------------------------------------------------------------------------- /Other/Assembly Photos/Components/JST Connector (female).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Other/Assembly Photos/Components/JST Connector (female).jpeg -------------------------------------------------------------------------------- /Other/Assembly Photos/Components/Latching Button (I-O).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Other/Assembly Photos/Components/Latching Button (I-O).jpeg -------------------------------------------------------------------------------- /Other/Assembly Photos/Components/Lithium Battery (2000mAh).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Other/Assembly Photos/Components/Lithium Battery (2000mAh).jpeg -------------------------------------------------------------------------------- /Other/Assembly Photos/Components/TP4056 Module.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Other/Assembly Photos/Components/TP4056 Module.jpeg -------------------------------------------------------------------------------- /Other/Assembly Photos/Step 1. Soldering to PCB (after).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Other/Assembly Photos/Step 1. Soldering to PCB (after).jpeg -------------------------------------------------------------------------------- /Other/Assembly Photos/Step 1. Soldering to PCB (before).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Other/Assembly Photos/Step 1. Soldering to PCB (before).jpeg -------------------------------------------------------------------------------- /Other/Assembly Photos/Step 2. Soldering the ESP32 (after).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Other/Assembly Photos/Step 2. Soldering the ESP32 (after).jpeg -------------------------------------------------------------------------------- /Other/Assembly Photos/Step 2. Soldering the ESP32 (before).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Other/Assembly Photos/Step 2. Soldering the ESP32 (before).jpeg -------------------------------------------------------------------------------- /Other/Assembly Photos/Step 3. Solder JST to TP4056 (after).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Other/Assembly Photos/Step 3. Solder JST to TP4056 (after).jpeg -------------------------------------------------------------------------------- /Other/Assembly Photos/Step 3. Solder JST to TP4056 (before).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Other/Assembly Photos/Step 3. Solder JST to TP4056 (before).jpeg -------------------------------------------------------------------------------- /Other/Assembly Photos/Step 4. Extra TP4056 Wires (after).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Other/Assembly Photos/Step 4. Extra TP4056 Wires (after).jpeg -------------------------------------------------------------------------------- /Other/Assembly Photos/Step 4. Extra TP4056 Wires (before).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Other/Assembly Photos/Step 4. Extra TP4056 Wires (before).jpeg -------------------------------------------------------------------------------- /Other/Assembly Photos/Step 5. Soldering to Latching Button (#1).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Other/Assembly Photos/Step 5. Soldering to Latching Button (#1).jpeg -------------------------------------------------------------------------------- /Other/Assembly Photos/Step 5. Soldering to Latching Button (#2).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Other/Assembly Photos/Step 5. Soldering to Latching Button (#2).jpeg -------------------------------------------------------------------------------- /Other/Assembly Photos/Step 6. Completing Build.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Other/Assembly Photos/Step 6. Completing Build.jpeg -------------------------------------------------------------------------------- /Other/Assembly Photos/Step 7. Attaching the Battery.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Other/Assembly Photos/Step 7. Attaching the Battery.jpeg -------------------------------------------------------------------------------- /Other/Assembly Photos/Step 8. Final Product.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/Other/Assembly Photos/Step 8. Final Product.jpeg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianwalczak/BKFZ-SubGHz/HEAD/README.md --------------------------------------------------------------------------------