Jump to content

JasonG1974

Member
  • Posts

    1
  • Joined

  • Last visited

Posts posted by JasonG1974

  1. I am a total beginner with zero coding experience and I have a Forbidden Planet Blaster Prop I have been working to add basic light and sound functions to. I am 90% there. I have the Adafruit Audio FX Soundboard with speaker connected, 2 sounds loaded and functioning to trigger a power up sound when turned on, and a blaster sound when the momentary trigger switch connected to pin 1 is actuated. Previously I had an LED connected to the ACT pin but it wasn’t bright enough so I got the Trinket MO and the 12 NeoPixel ring. Using Maker I was able to program the Trinket to turn on the Neo ring with the proper color and brightness but I don’t know how to get the Neo to be turned on and off by the ACT pin on the Soundboard. Can someone please help me modify my code so that when pin 4 on Trinket(connected to ACT pin on Soundboard) goes LOW, the neopixel data line connected to pin 0 on Trinket will turn ON Neo Ring, and when Trinket pin 4 goes HIGH it will turn it OFF? Thanks! Here is the Trinket Code I have so far:

     

    let strip: light.NeoPixelStrip = null
    forever(function () {
    strip = light.createStrip(pins.D0, 12)
    strip.setAll(0x005fff)
    strip.setBrightness(255)
    })

×
×
  • Create New...