<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.extremist.software/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=SteveMnuchin</id>
	<title>Noisebridge - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.extremist.software/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=SteveMnuchin"/>
	<link rel="alternate" type="text/html" href="https://wiki.extremist.software/wiki/Special:Contributions/SteveMnuchin"/>
	<updated>2026-04-04T07:31:44Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.13</generator>
	<entry>
		<id>https://wiki.extremist.software/index.php?title=MicroPython&amp;diff=63555</id>
		<title>MicroPython</title>
		<link rel="alternate" type="text/html" href="https://wiki.extremist.software/index.php?title=MicroPython&amp;diff=63555"/>
		<updated>2018-01-05T04:04:13Z</updated>

		<summary type="html">&lt;p&gt;SteveMnuchin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is all about [https://micropython.org/ micropython.org] in particular using it with [[ESP8266]] &amp;amp; [[ESP32]]&lt;br /&gt;
&lt;br /&gt;
== programs ==&lt;br /&gt;
&lt;br /&gt;
=== solid color neopixels (WS2812b) ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
from machine import Pin&lt;br /&gt;
from neopixel import NeoPixel&lt;br /&gt;
&lt;br /&gt;
NEO_PIN = const(3)&lt;br /&gt;
NEO_COUNT = const(72)&lt;br /&gt;
&lt;br /&gt;
neo = Pin(NEO_PIN, Pin.OUT)&lt;br /&gt;
np = NeoPixel(neo, NEO_COUNT)&lt;br /&gt;
&lt;br /&gt;
#        R   G   B&lt;br /&gt;
color = [0, 20, 20]&lt;br /&gt;
&lt;br /&gt;
def stripColor():&lt;br /&gt;
    global NEO_COUNT, np, color&lt;br /&gt;
    for x in range(0, NEO_COUNT):&lt;br /&gt;
        np[x] = color&lt;br /&gt;
    np.write()&lt;br /&gt;
&lt;br /&gt;
# update the entire strip with one color&lt;br /&gt;
stripColor()&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== firmware/flashing ==&lt;br /&gt;
&lt;br /&gt;
Instructions for flash and pre-compiled binaries can be found at: https://micropython.org/download&lt;br /&gt;
&lt;br /&gt;
Source and instructions for compiling yourself are available at: https://github.com/micropython/micropython&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Munichin1.png]]&lt;br /&gt;
[[File:Munichin2.png]]&lt;/div&gt;</summary>
		<author><name>SteveMnuchin</name></author>
	</entry>
</feed>