{"id":17980214,"url":"https://github.com/some-natalie/python-pi","last_synced_at":"2025-08-16T21:32:14.873Z","repository":{"id":27755137,"uuid":"31243216","full_name":"some-natalie/python-pi","owner":"some-natalie","description":"Python programs for the Raspberry Pi using RPi.GPIO and a basic breadboard.","archived":false,"fork":false,"pushed_at":"2015-10-12T18:02:23.000Z","size":3424,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2023-02-28T10:16:50.509Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/some-natalie.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-02-24T03:34:21.000Z","updated_at":"2015-03-03T17:45:02.000Z","dependencies_parsed_at":"2022-09-03T05:11:32.362Z","dependency_job_id":null,"html_url":"https://github.com/some-natalie/python-pi","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/some-natalie%2Fpython-pi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/some-natalie%2Fpython-pi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/some-natalie%2Fpython-pi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/some-natalie%2Fpython-pi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/some-natalie","download_url":"https://codeload.github.com/some-natalie/python-pi/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230061386,"owners_count":18166703,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-29T17:43:08.776Z","updated_at":"2024-12-17T04:07:25.304Z","avatar_url":"https://github.com/some-natalie.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# python-pi\n\n# Files\n\n## 1 - Blinking LED\n\nFile:  blink-led.py\n\nDemo:  [Video](http://youtu.be/VDpIjwQILoo)\n\nDiagram:  [Source file](https://github.com/natalie-/python-pi/blob/master/breadboard/1-led.fzz)\n\n![Diagram](https://github.com/natalie-/python-pi/blob/master/breadboard/1-led.png)\n\nDescription:  Blinks an LED a set number of times for a given duration.\n\n## 2 - Button LED\n\nFile:  button-led.py\n\nDemo:  [Video](http://youtu.be/SKfqJffWsVQ)\n\nDiagram:  [Source file](https://github.com/natalie-/python-pi/blob/master/breadboard/1-button-led.fzz)\n\n![Diagram](https://github.com/natalie-/python-pi/blob/master/breadboard/1-button-led.png)\n\nDescription:  LED controlled by a button.  Button held, LED on.  Button not pressed, LED off.\n\n## 3 - Switch LED\n\nFile:  switch-led.py\n\nDemo:  [Video](http://youtu.be/brnC-m0cb90)\n\nDiagram:  This one uses the same diagram as the button LED.\n\nDescription:  LED controlled by a button acting as a switch.  Press the button, the LED turns off (if it is on) or on (if it is off).\n\n## 4 - 8 Blinking LEDs\n\nFile:  8-led.py\n\nDemo:  [Video](http://youtu.be/EhjjGvgzfOs)\n\nDiagram:  [Source file](https://github.com/natalie-/python-pi/blob/master/breadboard/8-led.fzz)\n\n![Diagram](https://github.com/natalie-/python-pi/blob/master/breadboard/8-led.png)\n\nDescription:  8 LEDs blinking left to right.\n\n## 5 - 8 LEDs with a GUI\n\nFiles:  8-led-gui.py, led.ui\n\nDemo:  [Video](https://www.youtube.com/watch?v=dQXv1FyIoSA)\n\nDiagram:  This one uses the same diagram as the regular 8 LEDs\n\nDescription:  8 LEDs now controlled by checkboxes in a GUI.  GUI built with [pygubu](https://github.com/alejandroautalan/pygubu).\n\nScreenshot:\n\n![GUI](https://github.com/natalie-/python-pi/blob/master/screenshots/GUI.jpg \"GUI screenshot\")     ![Picture of breadboard](https://github.com/natalie-/python-pi/blob/master/screenshots/breadboard.jpg \"Picture of breadboard\")\n\n## 6 - One RGB LED\n\nFile:  rgb-led.py\n\nDemo:  [Video](https://www.youtube.com/watch?v=CdU0b_Pm4rE)\n\nDiagram:  [Source file](https://github.com/natalie-/python-pi/blob/master/breadboard/rgb-led.fzz)\n\n![Diagram](https://github.com/natalie-/python-pi/blob/master/breadboard/rgb-led.png)\n\nDescription:  A single RGB LED that blinks red/green/blue/white 10 times, then exits.\n\n## 7 - Random colors on one RGB LED\n\nFile:  random-color.py\n\nDemo:  [Video](https://www.youtube.com/watch?v=09hB7dvITEk)\n\nDiagram:  This one uses the same diagram as the one RGB LED\n\nDescription:  Random colors fading one to the next on one RGB LED.\n\n## 8 - Random colors on one RGB LED (now with functions)\n\nFile:  random-color-2.py\n\nDemo:  Same as above.\n\nDiagram:  This one uses the same diagram as the one RGB LED\n\nDescription:  Random colors fading one to the next on one RGB LED, controlled by functions.\n\nDiagrams made using [Fritzing](http://fritzing.org/download/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsome-natalie%2Fpython-pi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsome-natalie%2Fpython-pi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsome-natalie%2Fpython-pi/lists"}