Shop
OBEX
P1 Docs
P2 Docs
Learn
Events
White noise program — Parallax Forums
toggle menu
Categories
Discussions
Sign In
·
Register
Sign In
·
Register
Categories
Discussions
Sign In
·
Register
×
Home
›
BASIC Stamp
White noise program
radar53
Posts:
1
2008-03-30 20:57
edited 2008-03-31 13:45
in
BASIC Stamp
Has anyone created a White Noise program for the basic stamp? Any help would be appreciated
Comments
Franklin
Posts:
4,747
2008-03-31 00:37
edited 2008-03-31 00:37
I don't think the stamp can do that without other chips and with other chips I don't think you would need the stamp.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
- Stephen
robots42
Posts:
27
2008-03-31 01:02
edited 2008-03-31 01:02
You could try experimenting with pwm
' {$STAMP BS2}
i VAR Byte
start:
FOR i=0 TO 255
DEBUG DEC i,CR
PWM 8,i,1
NEXT
GOTO start
some values of i are better than others.
David
Andy Fox
Posts:
46
2008-03-31 13:45
edited 2008-03-31 13:45
I asked this question a while ago... never did get a full solution.
http://forums.parallax.com/showthread.php?p=681424
Might end up investing in a SSG01 Soundgin co-processor.
Sign In
or
Register
to comment.
Comments
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
- Stephen
' {$STAMP BS2}
i VAR Byte
start:
FOR i=0 TO 255
DEBUG DEC i,CR
PWM 8,i,1
NEXT
GOTO start
some values of i are better than others.
David
http://forums.parallax.com/showthread.php?p=681424
Might end up investing in a SSG01 Soundgin co-processor.