Jump to content

lukas412

Programmer
  • Posts

    269
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by lukas412

  1. Took a couple pics last night. Got the baseboard assembled and working a couple weeks ago. Got my mouser order yesterday, but unfortunately I ordered the wrong stand offs. But I couldn't resist assembling it dry to see how its gonna look. I am so excited to get this thing finished up.

    Don't worry Wilba, nothing is soldered. So far I have followed your advice to the letter and assembly couldn't have been easier.

    More pics here. I'll post some pics of the finished product next week sometime. Also some other mb projects.

    http://www.flickr.com/photos/26368076@N07/

    Thanks for everyones efforts on all these great projects.

    Luke

    bb03_thumb.jpg

    sdpnl03_thumb.jpg

    2651_bb03_jpg7bba67d961503aaa60b5e4df55f

    2653_sdpnl03_jpg498737ac28051ef1d00a6451

  2. There must be quite a few people who have the parts kits now... How's the building coming along?

    I have been meaning to make a post soon. Last weekend I decided to start to work on my baseboard. I started around 9 or 10 am. At around 11pm I had all 8 Sids playing perfectly! I was absolutely amazed at how well this was put together, thanks to Wilba, TK, Smash and everyone else involved.

    Following Wilba's construction guide I did not run into a single problem. No debugging was necessary. All of the Sids worked just like expected. Now I just need to make a mouser order and I can finish up the control panel. Hopefully that part will go just as smoothly. Oh and to top it off I did it all with a crap radio shack iron, although I did completely burned two tips down to a nub doing it. I must say that it sounds amazing. Much better than I expected even. I'd be glad to answer any questions if I can.

    Thanks again everyone,

    Luke

  3. Does anybody know if these can be mounted to the same pcb/board as smash's encoders and get an even/balanced height?

    I'm using non-led cherry mx switches for my sequencer, and I have found I need to custom make my pcb to mount these switches securely. I'm using the non-tactile version of the switchs. I prefer them to the soft tact switch which has just a little bit of a click, if you even want to call it a click. They are very nice durable looking/feeling switches.

    Luke

  4. I always liked teachers that made me figure stuff out on my own. I finally got it. Im sure its not the most elegant technique, but it works for what I need.

    Thanks.

    
    ;;MidiChannel 9 & 10
    MB64E_META_Handler_00
    	;;Send first midi CC with fixed value
    	movlw	0xB8		; send 0xb0 (Controller Header, channel 9)
    	call	MIOS_MIDI_TxBufferPut
    
    	movf	MIDI_EVNT1, W
    	call	MIOS_MIDI_TxBufferPut
    
    	movlw	0x7F	; send 127
    	call	MIOS_MIDI_TxBufferPut
    
    	;;Send second midi CC with incremental value
    	movlw	0xB9		; send 0xb0 (Controller Header, channel 10)
    	call	MIOS_MIDI_TxBufferPut
    
    	movf	MIDI_EVNT1, W
    	call	MIOS_MIDI_TxBufferPut
    
    	movf	MIDI_EVNT_VALUE, W	; send enc/button value, stored in MIDI_EVNT_VALUE
    	call	MIOS_MIDI_TxBufferPut
    
    goto	MIOS_MIDI_BeginStream	; end stream and exit
    
    

×
×
  • Create New...