Show Posts
|
|
Pages: 1 [2] 3 4 ... 39
|
|
16
|
Using Arduino / Networking, Protocols, and Devices / Creating a wifi MIDI network
|
on: May 06, 2013, 09:16:01 am
|
|
Midi wifi
My Macbook can establish a wifi midi network with my ipad2 and send/receive midi data from the ipad to the computer. There is also a program called rtpMIDI that lets you create this MIDI networkfrom a wondows pc. I am trying to figure out if its possible to create this wifi midi link without a computer, using a wifi module like roving networks for example. I'm almost certain the Mac is the host, so the roving networks would need to mimic a "midi wifi host"? If I could do this, then I could make any kind of musically instrument with an Arduino that creates midi commands, and sends them via wifi to an iOS device. Right now, my homemade instruments have to resort to sending the midi commands through the dock connector of the iOS device, with third party hardware, but a wireless midi connection would great! I know the ipad supports midi over wifi, I just don't know if its possible to create this network with a standalone module like roving networks makes. I'll sure appritiate hearing from anyone who is familiar with a wifi midi network. Attached are photos of some musical instrents I've made. Thanks!
|
|
|
|
|
20
|
Using Arduino / Microcontrollers / Re: Homemade Atmega328P-AU programmer
|
on: April 18, 2013, 02:16:55 pm
|
take the 10-pin connector on the end.. stick header pins/jumpers to:
1 - VCC 2 - MOSI 3 - GND 6 - RESET 8 - SCK 10 - MISO
and connect to my Arduino board to: (respectively matching above)
+5v D11 GND RSET D13 D12
I think you'll need pin 10 instead of reset? This was mentioned early in this thread
|
|
|
|
|
22
|
Using Arduino / Microcontrollers / Re: Homemade Atmega328P-AU programmer
|
on: April 14, 2013, 10:19:30 pm
|
|
Edited my layout a bit, and will see how it works. Yes the diode is for testing purposes, so I know it's flashed before soldering it on an important board. I first designed it to sit inside the perimeter of the UNO, but then changed it so it sets on pins 8 thru 13, on the outside, with the chip on the very outside of the little 1" square board. I have a tiny spring clamp, about like a clothes pin, I can clamp the chip on with that, visually inspect it for squareness, and flash away. I'll let you know how it works in about a month.
|
|
|
|
|
24
|
Using Arduino / Microcontrollers / Homemade Atmega328P-AU programmer
|
on: April 13, 2013, 02:25:01 pm
|
|
I read where someone put the bootloader on their SMD Atmega328P by just manually pressing/holding it on pads while the bootloader loaded. I made this little board to do this, but before I add it to my next BatchPCB order, I had 2 questions.
I designed it where I could just plug it into pins 8 thru 13 on my UNO. Will pins 8 and 9 supply enough current to do this task? 8 will be the ground, 9 will be +5 volts.
Also, if the connection fails during the bootloading process, does that 'brick' the chip?
thanks,
ps. All the components (caps, crystal, and a test LED-to verify success via the blink sketch) will be soldered to the board. Only the Atmega328P-AU will be left blank, to manually hold the chip on and bootload it.
|
|
|
|
|
28
|
Using Arduino / Motors, Mechanics, and Power / Re: SMD MOSFET to power down my SMD H-Bridge
|
on: March 28, 2013, 09:43:56 am
|
|
Very good! I found the begin() statement and commented it out.
I reckon I should use the backlight for my LCD, then. I searched and found this schematic that turns is on and off. I cuts the NEG side, but I reckon the POS side isn't connected to the LCD's POS, so it won't back feed into it when I power off the LCD's chip. Not sure about the value of R7. Running from 4.5v, I may not need a very high resistor?
One thing I don't know/understand. When I power down this circuit by a LOW arduino pin, there won't be any current left flowing in the BSS1338 mosfet, then will there? See the attached clip from the BSS1338 data sheet. Does that mean there'll be .5 uA current loss all the time? Accord Nick Gammon's arduino power page, I can get the Atmega down to .335nA, so the current in the BSS1338 is considerable. I reckon the one controlling my H-bridge will add another .5uA.
|
|
|
|
|
29
|
Using Arduino / Motors, Mechanics, and Power / Re: SMD MOSFET to power down my SMD H-Bridge
|
on: March 27, 2013, 09:22:49 pm
|
Yes. BTW there is a problem with the LiquidCrystal library: it makes a call to the begin() function in the LiquidCrystal constructor Searched for 20 minutes, but couldn't come up with any more info about this. Is this something that I need to address? avoid feeding power through the I/O connections before you power up the LCD Will this matter? If so, I assume you mean I should edit one of the text files on my Mac? Under /Applications/Arduino.app/Contents/Resources/Java/libraries/LiquidCrystal I found 2 files that look like something you might mean to edit? These came with the Arduino IDE, if something's not right with one of them I'm surprised I couldn't find anything about it around here. Please advise. also, here is my completed schematic for the H-bridge shutdown. I tried to tidy it up a bit, and I think I understood where to add/remove the caps, but if you could check it out, I'd sure appreciate it.
|
|
|
|
|
30
|
Using Arduino / Motors, Mechanics, and Power / Re: SMD MOSFET to power down my SMD H-Bridge
|
on: March 27, 2013, 03:42:40 pm
|
What will I need to do to turn them low, just digitalWrite(pin, LOW)?
Yes. BTW there is a problem with the LiquidCrystal library: it makes a call to the begin() function in the LiquidCrystal constructor (a very silly thing to do IMO, and completely unnecessary because you should call begin() in setup). So you should preferably patch the LiquidCrystal library source file to remove this call, to avoid feeding power through the I/O connections before you power up the LCD. Is there an updated library that fixes this? I don't know anything about working with or editing libraries. Edit: ill search around about this. I should've done so before asking more about it.
|
|
|
|
|