Compare commits

...

4 Commits

Author SHA1 Message Date
D4rk$1d3 52015fb289 Update README
Build Dev Firmware / build (push) Failing after 16s
Added images for Custom Emulation Settings and Scene.
2026-05-18 20:52:27 -03:00
D4rk$1d3 23ba62cd69 Add files via upload 2026-05-18 20:49:21 -03:00
d4rks1d33 cd1e9d6945 Stupid chatGPT that add utm_source=chatgpt.com on links
Build Dev Firmware / build (push) Failing after 18s
2026-05-18 20:39:55 -03:00
d4rks1d33 c49b843096 Stupid chatGPT that add utm_source=chatgpt.com on links 2026-05-18 20:37:13 -03:00
5 changed files with 16 additions and 23 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

+11 -20
View File
@@ -77,33 +77,24 @@ jobs:
echo "FILE=$FILE" >> $GITHUB_OUTPUT
- name: Read changelog
id: changelog
shell: bash
run: |
{
echo 'CHANGELOG<<EOF'
cat CHANGELOG.md
echo 'EOF'
} >> "$GITHUB_OUTPUT"
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.version.outputs.NEW_TAG }}
name: Release ${{ steps.version.outputs.NEW_TAG }}
generate_release_notes: true
body: ${{ steps.changelog.outputs.CHANGELOG }}
make_latest: true
files: |
${{ steps.firmware.outputs.FILE }}
- name: Read changelog
id: changelog
run: |
CHANGELOG=$(cat CHANGELOG.md)
{
echo "CHANGELOG<<EOF"
echo "$CHANGELOG"
echo "EOF"
} >> $GITHUB_OUTPUT
- name: Create Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.tag.outputs.TAG }}
name: Dev Build ${{ steps.tag.outputs.TAG }}
body: ${{ steps.changelog.outputs.CHANGELOG }}
files: ${{ steps.firmware.outputs.FILE }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+3 -3
View File
@@ -21,7 +21,7 @@
### Special Thanks
Special thanks to [RocketGod-git](https://github.com/RocketGod-git?utm_source=chatgpt.com) for inspiration from the Proto Pirate application and related UI/interaction concepts that helped shape the CarEmulate workflow.
Special thanks to [RocketGod-git](https://github.com/RocketGod-git) for inspiration from the Proto Pirate application and related UI/interaction concepts that helped shape the CarEmulate workflow.
---
@@ -31,7 +31,7 @@ Protocols can now expose UP/DOWN/LEFT/RIGHT button cycling in the transmitter vi
### New macro
```c id="x0p8ad"
```
SUBGHZ_CUSTOM_BTN_DEFINE_MAP(
my_proto,
{SUBGHZ_CUSTOM_BTN_OK, 0xAA},
@@ -58,7 +58,7 @@ The macro automatically generates:
### Special Thanks
Thanks to [Zero-Mega](https://github.com/Zero-Mega?utm_source=chatgpt.com) for research, references, and contributions related to Land Rover protocol support.
Thanks to [Zero-Mega](https://github.com/Zero-Mega) for research, references, and contributions related to Land Rover protocol support.
---
+2
View File
@@ -36,6 +36,8 @@ This project may incorporate, adapt, or build upon **other open-source projects*
| Keeloq Key Manager | Mod Hopping Config |
| ![PSA Decrypt](.arf_pictures/psa_decrypt_builtin.png) | ![Counter BruteForce](.arf_pictures/counter_bruteforce.png) |
| PSA XTEA Decrypt | Counter BruteForce |
| ![Custom Emulation Settings](.arf_pictures/custom_emulation_settings.png) | ![Custom Emulation Scene](.arf_pictures/custom_emulation_scene.png) |
| Custom Emulation Settings | Custom Emulation Scene |
---