BitQuest! Pre-order today! Get your questin' gear on!

pedals fished from the shores of lake okanagan and flash frozen for freshness <drscientist.ca> <FB> <IG>

Moderator: Ryan

Post Reply
watchyourscrew
involved
involved
Posts: 98
Joined: Tue May 29, 2012 9:45 am
Location: ATX

Re: BitQuest! First proto build page 11

Post by watchyourscrew »

same
User avatar
Holy Schnikes
Supporter
Supporter
Posts: 6587
Joined: Thu Dec 09, 2010 3:05 pm
Location: Taint Louis

Re: BitQuest! First proto build page 11

Post by Holy Schnikes »

SUPER EXCITED for this one!
univalve wrote:Boner on Fire Wallet Panties!
User avatar
Ryan
IAMILFFAMOUS
IAMILFFAMOUS
Posts: 5277
Joined: Tue Mar 17, 2009 9:47 pm
Location: Ogopogo Valley
Contact:

Re: BitQuest! First proto build page 11

Post by Ryan »

Jero wrote:This the one?...http://spinsemi.com/products.html
How involved/difficult is the programming or coming up with patches? Is it an alien language of zeros and ones or a little more straight forward than that?


Sorry for my slow reply! Yessir, that's the one and it's about 100 bucks. Programming with the Spin is half straight forward, half alien language. To be really good at it is to be really good at complicated math, but it's the same as analog electronics in that you can work with the parts without knowing exactly how they work, knowwhatimean? I know how to hook up an op-amp to do a few different things but I couldn't grab a bag of transistors and diodes and build one from scratch. The Spin is like that.. especially if you're good at learning backwards from examples.. between the knowledge base online, the forum, and all the sample code that Spin provides, you get shown how to do nearly everything in some way and you sort of have to figure out how to put it together from there. You get to mess with 1s and 0s too

Here's code for a nice treble control, a simple low pass filter that goes from no cut to really dark and by changing a number can go to an infinite shelf of silence.

Code: Select all

;Variable LPF

equ   lp_filt   reg0
equ   kfilt   reg1

;Set up Pot2 for filter control

rdax   Pot2,0.99              ;read in Pot2, limit value to set maximum shelf
sof   -1,0.999         ;invert rotation, knob up = filter up/more treble cut
wrax   kfilt,0                 ;save filter coefficient control

;Set up input, do filter, then output

rdax    adcl, 1         ;read in left adc
rdax    lp_filt,-1.0              ;read in filter register
mulx    kfilt                 ;multiply by filter coefficient
rdax    lp_filt,1.0              ;read in filter register
wrax   dacl,0         ;write to left dac
User avatar
Ryan
IAMILFFAMOUS
IAMILFFAMOUS
Posts: 5277
Joined: Tue Mar 17, 2009 9:47 pm
Location: Ogopogo Valley
Contact:

Re: BitQuest! First proto build page 11

Post by Ryan »

This is all percolating nicely behind the scenes, guys, and I think we'll be on track for December questing for sure!
User avatar
Forrrest
committed
committed
Posts: 436
Joined: Sat Jan 19, 2013 1:52 am
Location: Kebek, Kanada

Re: BitQuest! First proto build page 11

Post by Forrrest »

Ryan wrote:This is all percolating nicely behind the scenes, guys, and I think we'll be on track for December questing for sure!

nicccccce
User avatar
hazelwould
IAMILFFAMOUS
IAMILFFAMOUS
Posts: 3590
Joined: Tue Oct 28, 2008 7:35 pm

Re: Been having a lot of fun with this lately....

Post by hazelwould »

Ryan wrote:Good idea, Ian, the BQ would be a perfect tool for that with all the right controls to make any effect. Like a digital Inventobox! *smile*

This week I made the first BitQuest in real life, the first proto is borned and it works perfectly!

Here's the layout image:

BitQuest! Sept 2013 ctrl1 exp.jpg


I don't know exactly what we'll do for the finish or knobs, this is just for fun, but I could see it having the jewel.. jewels really suit an adventure quest in my opinion. And I just added the labels in Picasa but that's how the controls will go.

BitQuest! first proto Sept 2013 controls.JPG


Side shot for jacks.. the expression jack will take over for digital control 1 letting you run the cool parameter of every patch with your foot. (filter freq, notch freq, pitch, delay time, sample rate, reverb decay, one cool control for each patch)

BitQuest! first proto Sept 2013 side.JPG


Kind of a tough build but that's part of the fun of the adventure!

BitQuest! first proto Sept 2013 guts.JPG


So the box and pcb are pretty much sorted... now I just need another weekend or three to finish the code!

Hopefully the etch looks close to this! Clean and simple! :evil:
jmoote
committed
committed
Posts: 376
Joined: Fri Jan 06, 2012 5:25 pm
Location: ON, Canada

Re: BitQuest! First proto build page 11

Post by jmoote »

Do want.
-Jeff
User avatar
khaavren
interested
interested
Posts: 32
Joined: Mon Oct 29, 2012 6:03 pm
Location: Edmonton

Re: BitQuest! First proto build page 11

Post by khaavren »

Deadly. I want this like a fat kid wants cake.

Ryan if you want any local bass guitar testers I will gladly bow down on your doorstep for the chance. ;)

Sam will vouch for me (I hope, hah).
User avatar
goroth
HERO
HERO
Posts: 13514
Joined: Wed Jan 25, 2012 3:50 am
Location: Eurothrash: Frozen northern outpost.
Contact:

Re: BitQuest! First proto build page 11

Post by goroth »

There's cake?
Gone Fission wrote: Thu Oct 24, 2024 2:21 pm That’s quarter-assed at best.
Music out on all streaming services and bandcamp and what not.
Spotify /// Apple Music
My band /// Instagram ///Bandcamp ///
User avatar
AngryGoldfish
IAMILFFAMOUS
IAMILFFAMOUS
Posts: 3527
Joined: Wed Jan 20, 2010 7:57 pm
Location: Ireland
Contact:

Re: BitQuest! First proto build page 11

Post by AngryGoldfish »

A fat kid usually WANTS cake, but knows it's not good for them and will hate themselves for consuming it. I see no reason to hate myself if I consumed one of these babies. Therefore your analogy is poor.





jk

:p
Catalinbread⁞⁞Earthquaker Devices⁞⁞Strymon⁞⁞Smallsound/Bigsound
Iron Ether⁞⁞Black Arts Toneworks⁞⁞Dr. Scientist⁞⁞Fairfield Circuitry
Tom Anderson⁞⁞Ibanez⁞⁞Guild⁞⁞Gretsch⁞⁞Fryette⁞⁞Audio Kitchen

Doom Room - type fast, riff slow
User avatar
Ryan
IAMILFFAMOUS
IAMILFFAMOUS
Posts: 5277
Joined: Tue Mar 17, 2009 9:47 pm
Location: Ogopogo Valley
Contact:

Re: BitQuest! First proto build page 11

Post by Ryan »

The etch is gonna look WAY WAY cooler than my prototype!

And yeah, all my pedals are made of cake... a stiff, dense cake that's packed full of minerals. Kinda like lembas bread that elves make.
Psyre
IAMILF
IAMILF
Posts: 2788
Joined: Tue Mar 29, 2011 11:10 am

Re: BitQuest! First proto build page 11

Post by Psyre »

Any idea of a price range for this one? Wanting to be ready and all :baby:
User avatar
Tompski
involved
involved
Posts: 51
Joined: Fri Nov 23, 2012 5:29 am
Location: London

Re: BitQuest! First proto build page 11

Post by Tompski »

Hey Ryan, please include me on the etched list if there is one yet, cheers,
T
User avatar
Shish
committed
committed
Posts: 367
Joined: Mon Oct 10, 2011 10:37 pm

Re: BitQuest! First proto build page 11

Post by Shish »

I can't wait for demos. I wanted to get a bit crusher but waiting to find out what Bit Quest has to offer since there is so much more options. I've never thought I'd be excited for digital distortion :)
Post Reply