I want to work on a project where I control a led strip via a Raspberry Pi Zero when I change my wallpaper on my computer.
The current setup I've come up with will have a c# written service running on my computer and detecting when I change my wallpaper. This service will collect some data about the wallpaper and have to send me 3 color codes from my Raspberry Pi 3 to my Raspberry Pi Zero. Here is a scheme (sort of):
Screen + Computer >> [LAN connection] << Raspberry Pi 3 >> [Bluetooth] < Raspberry Pi Zero >> Led strip
The question now is, how do I send the data from my computer to my Raspberry Pi 3?
I've did some reading and found out sockets could help me with this, but I honestly know nothing about this yet, so some references would be great.
Sidenote: I'm using Windows 10 IoT on my Raspberry Pi's, so it'll be all C# coding.