pc or mac control neopixel

For CircuitPython issues, ask in the Adafruit CircuitPython forum.

Moderators: adafruit_support_bill, adafruit

Please be positive and constructive with your questions and comments.
Locked
User avatar
famil
 
Posts: 62
Joined: Sun Sep 19, 2021 11:30 am

pc or mac control neopixel

Post by famil »

Hi

what is the syntax to trigger a neopixel by number also how do you call a function or glass from a computer to a feather board all the examples seem to be for the ios or android app.

is there a python app similar to the one written for ios or android app.
thanks

User avatar
adafruit_support_mike
 
Posts: 67446
Joined: Thu Feb 11, 2010 2:51 pm

Re: pc or mac control neopixel

Post by adafruit_support_mike »

famil wrote: Sat Jan 21, 2023 7:35 pm what is the syntax to trigger a neopixel by number

Code: Select all

    strip.setPixelColor( pixel_number, color );
famil wrote: Sat Jan 21, 2023 7:35 pm how do you call a function or glass from a computer to a feather board
Generally speaking, you send information from a computer to a microcontroller through a USB Serial connection.

You might also want to look at Processing:

https://processing.org/

The Arduino API is derived from systems called 'Wiring' and 'Processing'. Wiring provides a common API for programming microcontrollers, while Processing provides a common API for computers that talk to programmable hardware.

Locked
Please be positive and constructive with your questions and comments.

Return to “Wireless: WiFi and Bluetooth”