Python Forum
Trying to move a RGB ledstrip with slider of my phone in almost "realtime" help
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Trying to move a RGB ledstrip with slider of my phone in almost "realtime" help
#1
Hello there,


I am trying to have a RGB led on a 50 rgb ledstrip to move as my finger moves with the slider on my app.
the sliders min & max are.
Min = 0
Max = 49
This means I have 50 RGB LEDs.
So the resolution is good.

I am trying to do this in python but can't figure out how.
The code below is a standard colorwipe of the neopixel library
And as you can see I am doing nothing yet with the data => slider value

def colorWipe(strip, color, data):
    """Wipe color across display a pixel at a time."""
      
    for i in range(strip.numPixels()):
         strip.setPixelColor(i, color)
         strip.show()
         time.sleep(50/1000.0)
Calling the function

colorWipe(strip, Color(0,255,0), incomingData)
So I am hardcoding for now the color red.
Main priority is to have 1 rgb led follow my finger aka slider on the app.

Can somebody point me in the right direction?
Reply


Messages In This Thread
Trying to move a RGB ledstrip with slider of my phone in almost "realtime" help - by Edris89 - Sep-28-2018, 11:03 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Send SMS from my phone number aster 4 4,021 May-11-2025, 05:48 PM
Last Post: TheTechNexus
  Identifying Valid and Invalid Phone Contact KiranKandavalli 3 708 Apr-03-2025, 07:12 PM
Last Post: deanhystad
  Mirror Video Image in realtime makingwithheld 1 1,212 Oct-30-2023, 02:45 PM
Last Post: Larz60+
  Microsoft text phone verifying account cito 2 1,873 Jul-21-2022, 12:16 PM
Last Post: cito
  Python Flask Realtime system printout (console) ffmpeg jttolleson 3 4,693 Apr-18-2022, 06:39 PM
Last Post: jttolleson
  Float Slider - Affecting Values in Column 'Pandas' planckepoch86 0 2,060 Jan-22-2022, 02:18 PM
Last Post: planckepoch86
  time setup for realtime plotting of serial datas at high sampling rate alice93 6 6,583 Jan-07-2022, 05:41 PM
Last Post: deanhystad
Photo Customizing Slider Widget fishbackp 0 2,025 Feb-25-2021, 09:21 PM
Last Post: fishbackp
  Slider puzzle captcha resolver, how do this? dw0rd1337 0 4,195 Jan-04-2021, 11:55 PM
Last Post: dw0rd1337
  Keep Toggle View through Slider Steps yourboyjoe 1 2,238 Aug-10-2020, 07:32 PM
Last Post: Yoriz

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020