A 128x128 crowd-sourced display.
curl
curl -d "x=0&y=0&color=red" -X POST pixel.acm.illinois.edu
python
import requests
requests.post('http://pixel.acm.illinois.edu', data={'x': '0', 'y': '0', 'color': '#FF0000'})Renders a pixel with specified pixel color, at the given x and y coordinates.
Request body:
x: 0-127y: 0-127color: #FFFFFF or a supported color string.
Fetches a 128x128 screenshot of the Pixel display.