<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://miniscript.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=SicariusVelox</id>
	<title>MiniScript Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://miniscript.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=SicariusVelox"/>
	<link rel="alternate" type="text/html" href="http://miniscript.org/wiki/Special:Contributions/SicariusVelox"/>
	<updated>2026-04-26T04:27:13Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.34.0</generator>
	<entry>
		<id>http://miniscript.org/w/index.php?title=PixelDisplay&amp;diff=700</id>
		<title>PixelDisplay</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=PixelDisplay&amp;diff=700"/>
		<updated>2021-04-23T20:54:39Z</updated>

		<summary type="html">&lt;p&gt;SicariusVelox: Correct parameters for PixelDisplay.fillPoly.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The &amp;lt;c&amp;gt;PixelDisplay&amp;lt;/c&amp;gt; class in [[Mini Micro]] is a display type that represents a rectangular pixel buffer, with methods to efficiently draw lines, shapes, images, and text.&lt;br /&gt;
&lt;br /&gt;
By default, [[display]] 5 is configured as a pixel display, and is in fact the pixel display to which the [[gfx]] global refers (unless you change it).  But you can make any display layer a pixel display by setting its [[Display.mode|mode]] to &amp;lt;c&amp;gt;displayMode.pixel&amp;lt;/c&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Methods and Properties ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Method or Property !! Purpose&lt;br /&gt;
|-&lt;br /&gt;
| [[PixelDisplay.color]] || get or set the default drawing color, used when color is not otherwise specified&lt;br /&gt;
|-&lt;br /&gt;
| [[PixelDisplay.width]] || number of columns in the the pixel buffer&lt;br /&gt;
|-&lt;br /&gt;
| [[PixelDisplay.height]] || number of rows in the the pixel buffer&lt;br /&gt;
|-&lt;br /&gt;
| [[PixelDisplay.scale]] || scaling factor used to magnify (or shrink) the pixel display on screen&lt;br /&gt;
|-&lt;br /&gt;
| [[PixelDisplay.clear]] ''[color]'', ''[width]'', ''[height]'' || clear/reset the pixel buffer&lt;br /&gt;
|-&lt;br /&gt;
| [[PixelDisplay.pixel]] ''x '', ''y'' || get the color of a particular pixel&lt;br /&gt;
|-&lt;br /&gt;
| [[PixelDisplay.setPixel]] ''x'', ''y'', ''[color]'' || set the color of a particular pixel&lt;br /&gt;
|-&lt;br /&gt;
| [[PixelDisplay.scrollX]] || get or set a horizontal shift applied to the entire display&lt;br /&gt;
|-&lt;br /&gt;
| [[PixelDisplay.scrollY]] || get or set a vertical shift applied to the entire display&lt;br /&gt;
|-&lt;br /&gt;
| [[PixelDisplay.line]] ''x1'', ''y1'', ''x2'', ''y2'', ''[color]'', ''[penSize]'' || draw a line&lt;br /&gt;
|-&lt;br /&gt;
| [[PixelDisplay.drawRect]] ''left'', ''bottom'', ''width'', ''height'', ''[color]'', ''[penSize]'' || draw a rectangle outline&lt;br /&gt;
|-&lt;br /&gt;
| [[PixelDisplay.fillRect]] ''left'', ''bottom'', ''width'', ''height'', ''[color]'' || draw a filled rectangle&lt;br /&gt;
|-&lt;br /&gt;
| [[PixelDisplay.drawEllipse]] ''left'', ''bottom'', ''width'', ''height'', ''[color]'', ''[penSize]'' || draw an ellipse outline&lt;br /&gt;
|-&lt;br /&gt;
| [[PixelDisplay.fillEllipse]] ''left'', ''bottom'', ''width'', ''height'', ''[color]'' || draw a filled ellipse&lt;br /&gt;
|-&lt;br /&gt;
| [[PixelDisplay.drawPoly]] ''points'', ''[color]'', ''[penSize]'' || draw a polygon outline&lt;br /&gt;
|-&lt;br /&gt;
| [[PixelDisplay.fillPoly]] ''points'', ''[color]'' || draw a filled polygon&lt;br /&gt;
|-&lt;br /&gt;
| [[PixelDisplay.drawImage]] ''img'', ''left'', ''bottom'', ''[width]'', ''[height]'', ''[srcLeft]'', ''[srcBottom]'', ''[srcWidth]'', ''[srcHeight]'' || draw an [[Image]] (or portion thereof)&lt;br /&gt;
|-&lt;br /&gt;
| [[PixelDisplay.getImage]](''left'', ''bottom'', ''width'', ''height'') || get a portion of the pixel buffer as an [[Image]]&lt;br /&gt;
|-&lt;br /&gt;
| [[PixelDisplay.print]] ''str'', ''x'', ''y'', ''[color]'', ''[font]'' || draw a string&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>SicariusVelox</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Sound.waveform&amp;diff=699</id>
		<title>Sound.waveform</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Sound.waveform&amp;diff=699"/>
		<updated>2021-04-17T17:29:39Z</updated>

		<summary type="html">&lt;p&gt;SicariusVelox: Initial page creation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;c&amp;gt;[[Sound]].waveform&amp;lt;/c&amp;gt; defines the waveform that repeats based on the [[Sound]].[[Sound.freq|freq]]. It can be set a value or list of values typically from -1 to 1 (it's possible to add values outside of this range but it may lead to clipping or incorrect volume expectations.)&lt;br /&gt;
&lt;br /&gt;
== Predefined Waveforms ==&lt;br /&gt;
&lt;br /&gt;
the following table shows predefined waveforms included in the [[Sound]] class.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Waveform !! Description&lt;br /&gt;
|-&lt;br /&gt;
| [[Sound.sineWave]] || represents a sine wave (pure tone)&lt;br /&gt;
|-&lt;br /&gt;
| [[Sound.triangleWave]] || represents a triangle wave (almost pure)&lt;br /&gt;
|-&lt;br /&gt;
| [[Sound.sawtoothWave]] || represents a sawtooth wave (slightly &amp;quot;buzzier&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
| [[Sound.squareWave]] || represents a square wave (most buzzy/retro sound)&lt;br /&gt;
|-&lt;br /&gt;
| [[Sound.noiseWave]] || creates a pseudo-random &amp;quot;static&amp;quot; waveform&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
The following examples show basic uses and visual representations of each waveform.&lt;br /&gt;
waveform images unless specified otherwise use a [[Sound.freq|freq]] of 1 and [[Sound.duration|duration]] of 5 to show clarity.&lt;br /&gt;
&lt;br /&gt;
== Sound.sineWave ==&lt;br /&gt;
[[File:Waveform_sinewave.png]]&lt;br /&gt;
&lt;br /&gt;
the following example plays a 120hz sinewave&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;sine = new Sound&lt;br /&gt;
sine.init 1, 120, 1, Sound.sineWave&lt;br /&gt;
sine.play&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sound.triangleWave ==&lt;br /&gt;
[[File:Waveform_triangleWave.png]]&lt;br /&gt;
&lt;br /&gt;
the following example plays a 120hz triangleWave&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;triangle = new Sound&lt;br /&gt;
triangle.init 1, 120, 1, Sound.triangleWave&lt;br /&gt;
triangle.play&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sound.sawtoothWave ==&lt;br /&gt;
[[File:Waveform_sawtoothWave.png]]&lt;br /&gt;
&lt;br /&gt;
the following example plays a 120hz sawtoothWave&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;sawtooth = new Sound&lt;br /&gt;
sawtooth.init 1, 120, 1, Sound.sawtoothWave&lt;br /&gt;
sawtooth.play&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sound.squareWave ==&lt;br /&gt;
[[File:Waveform_squareWave.png]]&lt;br /&gt;
&lt;br /&gt;
the following example plays a 120hz squareWave&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;square = new Sound&lt;br /&gt;
square.init 1, 120, 1, Sound.squareWave&lt;br /&gt;
square.play&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sound.noiseWave ==&lt;br /&gt;
[[File:Waveform_noiseWave.png]]&lt;br /&gt;
&lt;br /&gt;
the following example plays a 120hz noiseWave&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;noise = new Sound&lt;br /&gt;
noise.init 1, 120, 1, Sound.noiseWave&lt;br /&gt;
noise.play&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Using a custom waveform ==&lt;br /&gt;
[[File:Waveform_trapezoidWave.png]]&lt;br /&gt;
&lt;br /&gt;
the following example shows how to use a custom waveform.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;&lt;br /&gt;
trapezoidWave = [0,1,1,1,0]&lt;br /&gt;
trapezoid = new Sound&lt;br /&gt;
trapezoid.init 1, 120, 1, trapezoidWave&lt;br /&gt;
trapezoid.play&lt;br /&gt;
&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
See also: &amp;lt;c&amp;gt;[[Sound.init]]&amp;lt;/c&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>SicariusVelox</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=File:Waveform_trapezoidWave.png&amp;diff=698</id>
		<title>File:Waveform trapezoidWave.png</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=File:Waveform_trapezoidWave.png&amp;diff=698"/>
		<updated>2021-04-17T17:21:00Z</updated>

		<summary type="html">&lt;p&gt;SicariusVelox: captured example demonstrating the output of a custom trapezoidal waveform.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
captured example demonstrating the output of a custom trapezoidal waveform.&lt;/div&gt;</summary>
		<author><name>SicariusVelox</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=File:Waveform_noiseWave.png&amp;diff=697</id>
		<title>File:Waveform noiseWave.png</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=File:Waveform_noiseWave.png&amp;diff=697"/>
		<updated>2021-04-17T16:52:42Z</updated>

		<summary type="html">&lt;p&gt;SicariusVelox: captured example demonstrating the output of a simple Sound.noiseWave&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
captured example demonstrating the output of a simple Sound.noiseWave&lt;/div&gt;</summary>
		<author><name>SicariusVelox</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=File:Waveform_squareWave.png&amp;diff=696</id>
		<title>File:Waveform squareWave.png</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=File:Waveform_squareWave.png&amp;diff=696"/>
		<updated>2021-04-17T16:52:26Z</updated>

		<summary type="html">&lt;p&gt;SicariusVelox: captured example demonstrating the output of a simple Sound.squareWave&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
captured example demonstrating the output of a simple Sound.squareWave&lt;/div&gt;</summary>
		<author><name>SicariusVelox</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=File:Waveform_sawtoothWave.png&amp;diff=695</id>
		<title>File:Waveform sawtoothWave.png</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=File:Waveform_sawtoothWave.png&amp;diff=695"/>
		<updated>2021-04-17T16:52:04Z</updated>

		<summary type="html">&lt;p&gt;SicariusVelox: captured example demonstrating the output of a simple Sound.sawtoothWave&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
captured example demonstrating the output of a simple Sound.sawtoothWave&lt;/div&gt;</summary>
		<author><name>SicariusVelox</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=File:Waveform_triangleWave.png&amp;diff=694</id>
		<title>File:Waveform triangleWave.png</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=File:Waveform_triangleWave.png&amp;diff=694"/>
		<updated>2021-04-17T16:46:20Z</updated>

		<summary type="html">&lt;p&gt;SicariusVelox: captured example demonstrating the output of a simple Sound.triangleWave&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
captured example demonstrating the output of a simple Sound.triangleWave&lt;/div&gt;</summary>
		<author><name>SicariusVelox</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=File:Waveform_sinewave.png&amp;diff=693</id>
		<title>File:Waveform sinewave.png</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=File:Waveform_sinewave.png&amp;diff=693"/>
		<updated>2021-04-17T16:39:31Z</updated>

		<summary type="html">&lt;p&gt;SicariusVelox: captured example demonstrating the output of a simple Sound.sineWave&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
captured example demonstrating the output of a simple Sound.sineWave&lt;/div&gt;</summary>
		<author><name>SicariusVelox</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Http.put&amp;diff=691</id>
		<title>Http.put</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Http.put&amp;diff=691"/>
		<updated>2021-04-17T01:30:00Z</updated>

		<summary type="html">&lt;p&gt;SicariusVelox: Created page with &amp;quot;In Mini Micro, the http.put function sends data to a URL using the PUT method and returns the contents of the URL using the HTTP PUT protocol.  It supports text, image...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In [[Mini Micro]], the [[http]].put function sends data to a URL using the PUT method and returns the contents of the URL using the HTTP PUT protocol.  It supports text, images, sounds, and raw binary data.&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| url || URL of the web page or resource to fetch&lt;br /&gt;
|-&lt;br /&gt;
| data || Data to put can be a [[string]] or a [[map]]&lt;br /&gt;
|-&lt;br /&gt;
| headers || optional map of HTTP headers&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
The type of the value returned depends on the MIME type reported by the server, as follows:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! MIME Type !! MiniScript Type&lt;br /&gt;
|-&lt;br /&gt;
| image || [[Image]] object&lt;br /&gt;
|-&lt;br /&gt;
| audio || [[Sound]] object&lt;br /&gt;
|-&lt;br /&gt;
| text, javascript, xml, or json || [[string]]&lt;br /&gt;
|-&lt;br /&gt;
| any other type || [[RawData]] object&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
The following example, typed on the Mini Micro command line puts data to a URL, retrieves a response, and displays Hello World from the test site http://postman-echo.com.&lt;br /&gt;
&lt;br /&gt;
Note: depending on how the server is setup to respond to put requests you may get different types of data. the below example the server responds with application/octet-stream or a list of unicode number values which we must convert back into a string.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;import &amp;quot;json&amp;quot; // for json.parse&lt;br /&gt;
import &amp;quot;listUtil&amp;quot; // for List.apply extension&lt;br /&gt;
request = http.put(&amp;quot;http://postman-echo.com/put&amp;quot;, &amp;quot;Hello World&amp;quot;)&lt;br /&gt;
request_data = json.parse(request)&lt;br /&gt;
buffer = request_data.data.data&lt;br /&gt;
buffer.apply(@char)&lt;br /&gt;
buffer.join(&amp;quot;&amp;quot;)&lt;br /&gt;
&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>SicariusVelox</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Http.post&amp;diff=690</id>
		<title>Http.post</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Http.post&amp;diff=690"/>
		<updated>2021-04-17T01:06:59Z</updated>

		<summary type="html">&lt;p&gt;SicariusVelox: added needed import statement.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In [[Mini Micro]], the [[http]].post function sends data to a URL using the POST method and returns the contents of the URL using the HTTP POST protocol.  It supports text, images, sounds, and raw binary data.&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| url || URL of the web page or resource to fetch&lt;br /&gt;
|-&lt;br /&gt;
| data || Data to post can be a [[string]] or a [[map]]&lt;br /&gt;
|-&lt;br /&gt;
| headers || optional map of HTTP headers&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
The type of the value returned depends on the MIME type reported by the server, as follows:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! MIME Type !! MiniScript Type&lt;br /&gt;
|-&lt;br /&gt;
| image || [[Image]] object&lt;br /&gt;
|-&lt;br /&gt;
| audio || [[Sound]] object&lt;br /&gt;
|-&lt;br /&gt;
| text, javascript, xml, or json || [[string]]&lt;br /&gt;
|-&lt;br /&gt;
| any other type || [[RawData]] object&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
The following example, typed on the Mini Micro command line posts form data, retrieves a response, and displays Hello World from the test site http://postman-echo.com.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;import &amp;quot;json&amp;quot;&lt;br /&gt;
request = http.post(&amp;quot;http://postman-echo.com/post&amp;quot;, {&amp;quot;data&amp;quot;:&amp;quot;Hello World&amp;quot;})&lt;br /&gt;
request_data = json.parse(request)&lt;br /&gt;
request_data.form.data&lt;br /&gt;
&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>SicariusVelox</name></author>
		
	</entry>
	<entry>
		<id>http://miniscript.org/w/index.php?title=Http.post&amp;diff=689</id>
		<title>Http.post</title>
		<link rel="alternate" type="text/html" href="http://miniscript.org/w/index.php?title=Http.post&amp;diff=689"/>
		<updated>2021-04-17T00:35:40Z</updated>

		<summary type="html">&lt;p&gt;SicariusVelox: Created page with &amp;quot;In Mini Micro, the http.post function sends data to a URL using the POST method and returns the contents of the URL using the HTTP POST protocol.  It supports text, im...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In [[Mini Micro]], the [[http]].post function sends data to a URL using the POST method and returns the contents of the URL using the HTTP POST protocol.  It supports text, images, sounds, and raw binary data.&lt;br /&gt;
&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter Name !! Meaning&lt;br /&gt;
|-&lt;br /&gt;
| url || URL of the web page or resource to fetch&lt;br /&gt;
|-&lt;br /&gt;
| data || Data to post can be a [[string]] or a [[map]]&lt;br /&gt;
|-&lt;br /&gt;
| headers || optional map of HTTP headers&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Usage Notes ===&lt;br /&gt;
The type of the value returned depends on the MIME type reported by the server, as follows:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! MIME Type !! MiniScript Type&lt;br /&gt;
|-&lt;br /&gt;
| image || [[Image]] object&lt;br /&gt;
|-&lt;br /&gt;
| audio || [[Sound]] object&lt;br /&gt;
|-&lt;br /&gt;
| text, javascript, xml, or json || [[string]]&lt;br /&gt;
|-&lt;br /&gt;
| any other type || [[RawData]] object&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
The following example, typed on the Mini Micro command line posts form data, retrieves a response, and displays Hello World from the test site http://postman-echo.com.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ms&amp;gt;request = http.post(&amp;quot;http://postman-echo.com/post&amp;quot;, {&amp;quot;data&amp;quot;:&amp;quot;Hello World&amp;quot;})&lt;br /&gt;
request_data = json.parse(request)&lt;br /&gt;
request_data.form.data&lt;br /&gt;
&amp;lt;/ms&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Mini Micro]]&lt;/div&gt;</summary>
		<author><name>SicariusVelox</name></author>
		
	</entry>
</feed>