Skip to content

Commit

Permalink
Add Audiofab links and information!
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Melvin committed Nov 23, 2023
1 parent 2d71895 commit 6f21b5f
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default [
author_url: "mailto:[email protected]", // Or a regular web link
categories: ["Flanger", "Reverb"], // Required, at least 1
download: { // Required
spn: { // or "spbk" or "spcd"
spn: { // or "spbk", "spcd", "hex", or "zip"
// Either file or url. You don't need both.
file: "flange_verb.spn",
}
Expand Down
3 changes: 2 additions & 1 deletion pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</div>

<h2>Circuit / PCB</h2>
<p>Unless otherwise noted, all of these programs are assumed to work on the <a target="_blank" href="images/fv1-typical-application.png">"typical application"</a> circuit from the <a target="_blank" href="http://spinsemi.com/Products/datasheets/spn1001/FV-1.pdf">FV-1 datasheet</a>, and should also run fine on either the <strong><a target="_blank" href="https://github.com/mstratman/fv1-pedal-platform"><strong>Mimir's Well:</strong> FV-1 platform pedal</a></strong>, or the <a target="_blank" href="https://www.pedalpcb.com/product/arachnid/">Arachnid board from PedalPCB</a>.</p>
<p>Unless otherwise noted, all of these programs are assumed to work on the <a target="_blank" href="images/fv1-typical-application.png">"typical application"</a> circuit from the <a target="_blank" href="http://spinsemi.com/Products/datasheets/spn1001/FV-1.pdf">FV-1 datasheet</a>, and should also run fine on the <strong><a target="_blank" href="https://github.com/mstratman/fv1-pedal-platform"><strong>Mimir's Well:</strong> FV-1 platform pedal</a></strong>, the <a target="_blank" href="https://audiofab.com/products/easy-spin">Easy Spin pedal from Audiofab</a>, or the <a target="_blank" href="https://www.pedalpcb.com/product/arachnid/">Arachnid board from PedalPCB</a>.</p>
<p>You can also <a href="https://shop.mas-effects.com/collections/diy/products/custom-fv-1-eeprom" target="_blank">get pre-programmed EEPROMs here</a>.</p>
<!--
<div class="center-buttons">
Expand Down Expand Up @@ -168,6 +168,7 @@
<a v-if="p.download.spbk" class="button button-primary keep-case" target="_blank" :href="p.download.spbk.url || `/files/${p.download.spbk.file}`" download>Download SpinCAD Bank</a>
<a v-if="p.download.spcd" class="button button-primary keep-case" target="_blank" :href="p.download.spcd.url || `/files/${p.download.spcd.file}`" download>Download SpinCAD</a>
<a v-if="p.download.hex" class="button button-primary keep-case" target="_blank" :href="p.download.hex.url || `/files/${p.download.hex.file}`" download>Download Hex</a>
<a v-if="p.download.zip" class="button button-primary keep-case" target="_blank" :href="p.download.zip.url || `/files/${p.download.zip.file}`" download>Download Zip</a>
</div>
</div>

Expand Down
40 changes: 39 additions & 1 deletion programs.js
Original file line number Diff line number Diff line change
Expand Up @@ -2219,5 +2219,43 @@ and shimmer code with some changes such as:
},
source_url: "http://www.spinsemi.com/forum/viewtopic.php?f=4&t=296",
},

{
name: "Distortion Algorithms",
author: "Audiofab",
author_url: "http://audiofab.com/",
categories: ["Distortion", "Chorus"],
download: {
zip: { url: "https://audiofab.com/s/Audiofab_Distortion_Programs.zip" },
},
controls: ["Gain", "Tone", "Level"],
source_url: "https://audiofab.com/downloads",
commentary: [
{
written_by: "Audiofab",
comments: { text: `;A bank of 8 patches featuring various distortion
;algorithms in some cases combined with chorus and filtering
;Includes the SpinCAD file for you to play around with and a
;JSON file for the Audiofab fv1_programmer utility`}
},
],
},
{
name: "Test Programs",
author: "Audiofab",
author_url: "http://audiofab.com/",
categories: ["Passthrough", "Output Zeroes", "Tremolo", "Delay", "Flanger", "Chorus", "Reverb"],
download: {
zip: { url: "https://audiofab.com/s/easy-spin-test-programs-v10.zip" },
},
source_url: "https://audiofab.com/downloads",
commentary: [
{
written_by: "Audiofab",
comments: { text: `;A bank of 8 patches featuring various test
;algorithms to ensure your FV-1-based pedal is working properly.
;Includes the SpinCAD file for you to play around with and, a
;JSON file for the Audiofab fv1_programmer utility and documentation!`}
},
],
},
]

0 comments on commit 6f21b5f

Please sign in to comment.