Digistump Forums
The Digispark => Digispark (Original) Support => Topic started by: cwhummel on February 25, 2013, 12:25:51 am
-
On the board, there appears to be a spot for a transistor, but it is not listed on the original kickstarter page. Is this needed?
-
It is a 3.3v regulator - just about any will do - 150ma or more would be good.
-
Can you provide a few part numbers/examples? I couldn't find anything really specific today, nor anything at radio shack.
-
MCP1702-33 would be the exact recommended part - though any 3.3v regulator should be fine.
Here is the project it was based off of:
http://jeelabs.net/projects/hardware/wiki/RFM12B_Board
http://jeelabs.net/attachments/download/449/jlpcb-511.pdf
-
Thanks!
-
Can you provide a pinout for the board? I need to use one with my uno and im not sure how to connect it. Thanks
-
Schematic attached
-
awesome, thanks!
-
So I've been plaing with these for a few days now, and got the two of them talking (using text sketches that came with a library I found on sparkfun), but I can't seem to figure out how to send commands. How do I press a button a the Tx side and turn on and LED on the Rx side?
-
You would need to do something like
completely pseudo code:
TX end
buttonPress = DigitalRead(1)
if(buttonpress)
send('button1')
RX end
string = receive()
if(string == 'button1')
digitalWrite(1,HIGH)