Posted 26 February 2016 - 12:55 PM
Hi everyone. I just had the idea of a rednet compatible webcam with its own API.
API Examples:
This one is for a livestream:
You can also use the API to check for a certain color pixel/block
It can also detect if a pixel changes over a long time (Motion detection)
You can also manipulate the pixels making for an even easier way of making graphics
So guys what do you think of this?
API Examples:
This one is for a livestream:
Rednet.Broadcast(Webcam.Output)
You can also use the API to check for a certain color pixel/block
If Webcam.Output == Colors.Orange Then Rednet.Broadcast(1,1"Fire Fire Fire!!")
It can also detect if a pixel changes over a long time (Motion detection)
If Webcam.Pixel1 == Colors.Grey and Webcam.Pixel2 == Colors.Red Then Print("Motion Detected")
You can also manipulate the pixels making for an even easier way of making graphics
Webcam.Pixel1 = Colors.Grey
Webcam.Pixel2 = Colors.Red
So guys what do you think of this?