Shop OBEX P1 Docs P2 Docs Learn Events
White noise program — Parallax Forums

White noise program

radar53radar53 Posts: 1
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

  • FranklinFranklin Posts: 4,747
    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
  • robots42robots42 Posts: 27
    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 FoxAndy Fox Posts: 46
    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.