Skip to content

Latest commit

 

History

History
40 lines (24 loc) · 736 Bytes

README.md

File metadata and controls

40 lines (24 loc) · 736 Bytes

ACM@UIUC Pixel

A 128x128 crowd-sourced display.

Examples

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'})

Endpoints

POST /

Renders a pixel with specified pixel color, at the given x and y coordinates.

Request body:

  • x: 0-127
  • y: 0-127
  • color: #FFFFFF or a supported color string.

GET /small.bmp

Fetches a 128x128 screenshot of the Pixel display.