Is there any Neopiexl support?
or support on SIP protocol?
or support on One wire protocol?
New to SIP stuff. I would like to write libs tools for Neopiexl if there are none out there.
Thanks,
David.
Neopiexl
Moderators: TomKerekes, dynomotion
- TomKerekes
- Posts: 2676
- Joined: Mon Dec 04, 2017 1:49 am
Re: Neopiexl
Did you mean SPI? If so see the SPI V6.c example. I'm not aware of any support for the others.
Regards,
Tom Kerekes
Dynomotion, Inc.
Tom Kerekes
Dynomotion, Inc.
-
- Posts: 15
- Joined: Fri Mar 22, 2019 7:37 pm
Re: Neopiexl
Thank you for the reference. I looked it over. The documenting is great (NOT!)
I will figure it out and give you an update with this project.
David.
I will figure it out and give you an update with this project.
David.
-
- Posts: 15
- Joined: Fri Mar 22, 2019 7:37 pm
Re: Neopiexl
OK, this file makes very little since (SPI V6.c)
Where dose port get set or what is the SPI port?
Where does one init. nodes?
Where dose one send data to node?
Thanks,
David.
Where dose port get set or what is the SPI port?
Where does one init. nodes?
Where dose one send data to node?
Thanks,
David.
- TomKerekes
- Posts: 2676
- Joined: Mon Dec 04, 2017 1:49 am
Re: Neopiexl
Hi David,
It would be helpful to know what you are trying to do.
What kind of device are you trying to communicate to?
For what purpose?
Not sure what you mean by "port" or "nodes"
Do you know what SPI is?
The IO pins used are defined at the beginning. Normally 4 are required.
The call:
is used to send the byte 0xAAto the device.
You might read this.
It would be helpful to know what you are trying to do.
What kind of device are you trying to communicate to?
For what purpose?
Not sure what you mean by "port" or "nodes"
Do you know what SPI is?
The IO pins used are defined at the beginning. Normally 4 are required.
The call:
Code: Select all
SPI_OUT(0xAA);
You might read this.
Regards,
Tom Kerekes
Dynomotion, Inc.
Tom Kerekes
Dynomotion, Inc.
-
- Posts: 15
- Joined: Fri Mar 22, 2019 7:37 pm
Re: Neopiexl
Thank you for clarification. Maybe SPI is not the direction I should pursue. The Neopixel light use a one wire communication library.
The goal is to use the Neopixel to control lights colors on a zone in machine using Klop and not an extra PLC to control the lights.
The Arduino uses the One Wire Library to control temperature sensors, lights and many other devices. The One Wire seems to be gaining in popularity.
If I could use the Kflop C to control the Neopixel, if possible.
What do you think, is it possible to do this.
David.
The goal is to use the Neopixel to control lights colors on a zone in machine using Klop and not an extra PLC to control the lights.
The Arduino uses the One Wire Library to control temperature sensors, lights and many other devices. The One Wire seems to be gaining in popularity.
If I could use the Kflop C to control the Neopixel, if possible.
What do you think, is it possible to do this.
David.
- TomKerekes
- Posts: 2676
- Joined: Mon Dec 04, 2017 1:49 am