<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Arte Sonoro - Hacismos - Arte by Manuel Orellana Sandoval</title>
      <link>https://padlet.com/morezane/8jeo6mexms7e</link>
      <description>Hecho con un frenesí creativo</description>
      <language>en-us</language>
      <pubDate>2018-02-21 20:44:45 UTC</pubDate>
      <lastBuildDate>2025-11-11 13:58:42 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title></title>
         <author>morezane</author>
         <link>https://padlet.com/morezane/8jeo6mexms7e/wish/233987531</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://www.youtube.com/watch?v=QgEx-HUb9WY" />
         <pubDate>2018-02-21 20:45:20 UTC</pubDate>
         <guid>https://padlet.com/morezane/8jeo6mexms7e/wish/233987531</guid>
      </item>
      <item>
         <title></title>
         <author>morezane</author>
         <link>https://padlet.com/morezane/8jeo6mexms7e/wish/233988028</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://www.youtube.com/watch?v=cmBqTAtnbS0" />
         <pubDate>2018-02-21 20:46:44 UTC</pubDate>
         <guid>https://padlet.com/morezane/8jeo6mexms7e/wish/233988028</guid>
      </item>
      <item>
         <title></title>
         <author>morezane</author>
         <link>https://padlet.com/morezane/8jeo6mexms7e/wish/233988549</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://www.youtube.com/watch?v=wqfEec9oono" />
         <pubDate>2018-02-21 20:47:14 UTC</pubDate>
         <guid>https://padlet.com/morezane/8jeo6mexms7e/wish/233988549</guid>
      </item>
      <item>
         <title></title>
         <author>morezane</author>
         <link>https://padlet.com/morezane/8jeo6mexms7e/wish/233988955</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://www.youtube.com/watch?v=UeTcNSe9eWw" />
         <pubDate>2018-02-21 20:48:17 UTC</pubDate>
         <guid>https://padlet.com/morezane/8jeo6mexms7e/wish/233988955</guid>
      </item>
      <item>
         <title></title>
         <author>morezane</author>
         <link>https://padlet.com/morezane/8jeo6mexms7e/wish/322767777</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://cdn.instructables.com/FDM/XC4J/HAQ3CIX7/FDMXC4JHAQ3CIX7.LARGE.gif" />
         <pubDate>2019-01-21 19:36:56 UTC</pubDate>
         <guid>https://padlet.com/morezane/8jeo6mexms7e/wish/322767777</guid>
      </item>
      <item>
         <title></title>
         <author>morezane</author>
         <link>https://padlet.com/morezane/8jeo6mexms7e/wish/322767935</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://cdn.instructables.com/FPG/R6NX/HAQ3CH6U/FPGR6NXHAQ3CH6U.LARGE.jpg" />
         <pubDate>2019-01-21 19:37:46 UTC</pubDate>
         <guid>https://padlet.com/morezane/8jeo6mexms7e/wish/322767935</guid>
      </item>
      <item>
         <title></title>
         <author>morezane</author>
         <link>https://padlet.com/morezane/8jeo6mexms7e/wish/322767981</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://cdn.instructables.com/FAZ/WY6K/HAQ3CIX0/FAZWY6KHAQ3CIX0.LARGE.jpg" />
         <pubDate>2019-01-21 19:38:00 UTC</pubDate>
         <guid>https://padlet.com/morezane/8jeo6mexms7e/wish/322767981</guid>
      </item>
      <item>
         <title>Arduino Punk ConsoleA simple programmable 8 step tone sequencer</title>
         <author>morezane</author>
         <link>https://padlet.com/morezane/8jeo6mexms7e/wish/322768251</link>
         <description><![CDATA[<div><br>/* ======================================================================<br>Arduino Punk Console<br>A simple programmable 8 step tone sequencer<br>by dano/beavisaudio.com<br>Revs<br>-----------------------------------<br>15 Sept  djh  initial version<br>======================================================================*/<br>// Map all the input and output pins<br>#define AnalogInFrequency 1<br>#define AnalogInTempo 2<br>#define AnalogInDuration 0<br>#define DigitalOutSignal 11<br>#define DigitalInSwitch0 2<br>#define DigitalInSwitch1 3<br>#define DigitalInSwitch2 4<br>#define DigitalInSwitch3 5<br>#define DigitalInSwitch4 6<br>#define DigitalInSwitch5 7<br>#define DigitalInSwitch6 8<br>#define DigitalInSwitch7 9<br>#define DigitalInStartStop 10<br>#define DigitalOutLED 12<br>// Set up the array for each step<br>int steps[] = {100,120,140,160,180,200,220,240};<br>// misc housekeeping<br>int duration = 50;<br>int pitchval = 1;<br>int fPlayMode = true;<br>int lastPushedStep = -1;<br>// Initialize the tempo<br>int tempo = 100;<br>void setup()<br>{<br>  // setup pin modes (Digital pins are input by default, but<br>  // I like to set 'em explicitly just so the code is clear.<br>  pinMode (DigitalInSwitch0, INPUT);<br>  pinMode (DigitalInSwitch1, INPUT);<br>  pinMode (DigitalInSwitch2, INPUT);<br>  pinMode (DigitalInSwitch3, INPUT);<br>  pinMode (DigitalInSwitch4, INPUT);<br>  pinMode (DigitalInSwitch5, INPUT);<br>  pinMode (DigitalInSwitch6, INPUT);<br>  pinMode (DigitalInSwitch7, INPUT);               <br>  pinMode (DigitalInStartStop, INPUT);<br>  pinMode (DigitalOutSignal, OUTPUT); <br>  pinMode (DigitalOutLED, OUTPUT);<br> <br>}<br><br><br>void loop()<br>{<br>  // Main sequence loop <br>  for (int i=0; i&lt;8; i++)<br>  {  <br>    // Are we playing or stopping?<br>    fPlayMode = digitalRead (DigitalInStartStop);<br>    digitalWrite (DigitalOutLED, HIGH);<br>    // Check the Hardware<br>     readSwitches();<br>     readPots();<br><br>    // update the display<br>    updateDisplay();<br><br>    // Make the noise<br>    if (fPlayMode)<br>    {<br>      freqout (steps[i], duration);<br>    }<br>    digitalWrite (DigitalOutLED, LOW);<br><br>    // Pause between steps<br>    delay (tempo);      <br>  }<br>}<br><br>void updateDisplay()<br>{<br>  Serial.print (254, BYTE);<br>  Serial.print (192, BYTE);<br>  Serial.print ("T:");<br>  Serial.print (tempo);<br>  Serial.print (" d:");<br>  Serial.print (duration);<br>if (lastPushedStep != -1)<br>{<br>    Serial.print ("*");<br>    Serial.print (lastPushedStep);<br>}<br>}<br>// Read the current values of the pots, called from the loop.<br>void readPots ()<br>{<br>    tempo = (analogRead (AnalogInTempo) * 1.9);<br>    duration = (analogRead (AnalogInDuration));     <br>}<br>// Read the current values of the switches and<br>// if pressed, replace the switch's slot frequency<br>// by reading the frequency pot.<br>void readSwitches()<br>{<br>  // reset last pushed button number<br>  lastPushedStep = -1;<br><br>  // check switch 0, if pressed, get the current freq into step 0, etc. etc.<br>  if (digitalRead (DigitalInSwitch0) == HIGH)<br>  {<br>    steps[0] = analogRead(AnalogInFrequency);<br>    lastPushedStep = 1;<br>  }<br><br>  else if (digitalRead (DigitalInSwitch1) == HIGH)<br>  {<br>    steps[1] = analogRead(AnalogInFrequency);<br>    lastPushedStep = 2;<br>  }<br><br>  else if (digitalRead (DigitalInSwitch2) == HIGH)<br>  {<br>    steps[2] = analogRead(AnalogInFrequency);<br>    lastPushedStep = 3;<br>  }<br>  else if (digitalRead (DigitalInSwitch3) == HIGH)<br>  {<br>    steps[3] = analogRead(AnalogInFrequency);<br>    lastPushedStep = 4;<br>  }<br>  else if (digitalRead (DigitalInSwitch4) == HIGH)<br>  {<br>    steps[4] = analogRead(AnalogInFrequency);<br>    lastPushedStep = 5;<br>  }<br>  else if (digitalRead (DigitalInSwitch5) == HIGH)<br>  {<br>    steps[5] = analogRead(AnalogInFrequency);<br>    lastPushedStep = 6;<br>  }<br>  else if (digitalRead (DigitalInSwitch6) == HIGH)<br>  {<br>    steps[6] = analogRead(AnalogInFrequency);<br>    lastPushedStep = 7;<br>  }<br>  else if (digitalRead (DigitalInSwitch7) == HIGH)<br>  {<br>    steps[7] = analogRead(AnalogInFrequency);<br>    lastPushedStep = 8;<br>  }<br>}<br><br><br>//freqout code by Paul Badger<br>// freq - frequency value<br>// t - time duration of tone<br>void freqout(int freq, int t)<br>{<br>  int hperiod;     //calculate 1/2 period in us<br>  long cycles, i;<br><br>  // subtract 7 us to make up for digitalWrite overhead - determined empirically<br>  hperiod = (500000 / ((freq - 7) * pitchval));            <br><br>  // calculate cycles<br>  cycles = ((long)freq * (long)t) / 1000;    // calculate cycles<br>  for (i=0; i&lt;= cycles; i++)<br>  {              // play note for t ms <br>    digitalWrite(DigitalOutSignal, HIGH); <br>    delayMicroseconds(hperiod);<br>    digitalWrite(DigitalOutSignal, LOW); <br>    delayMicroseconds(hperiod - 1);     // - 1 to make up for fractional microsecond in digitaWrite overhead<br>  }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2019-01-21 19:39:27 UTC</pubDate>
         <guid>https://padlet.com/morezane/8jeo6mexms7e/wish/322768251</guid>
      </item>
      <item>
         <title></title>
         <author>morezane</author>
         <link>https://padlet.com/morezane/8jeo6mexms7e/wish/322768395</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://www.instructables.com/id/Arduino-Step-Sequencer/" />
         <pubDate>2019-01-21 19:40:20 UTC</pubDate>
         <guid>https://padlet.com/morezane/8jeo6mexms7e/wish/322768395</guid>
      </item>
      <item>
         <title></title>
         <author>morezane</author>
         <link>https://padlet.com/morezane/8jeo6mexms7e/wish/347617789</link>
         <description><![CDATA[]]></description>
         <enclosure url="http://www.radioelectronica.es/radioaficionados/120-como-modificar-un-receptor-de-fm-para-oir-la-vhf" />
         <pubDate>2019-04-02 13:38:34 UTC</pubDate>
         <guid>https://padlet.com/morezane/8jeo6mexms7e/wish/347617789</guid>
      </item>
      <item>
         <title></title>
         <author>morezane</author>
         <link>https://padlet.com/morezane/8jeo6mexms7e/wish/347618244</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://www.youtube.com/watch?v=JucueV8lZuo" />
         <pubDate>2019-04-02 13:39:18 UTC</pubDate>
         <guid>https://padlet.com/morezane/8jeo6mexms7e/wish/347618244</guid>
      </item>
      <item>
         <title></title>
         <author>morezane</author>
         <link>https://padlet.com/morezane/8jeo6mexms7e/wish/347619076</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://www.youtube.com/watch?v=faThaSnitsU" />
         <pubDate>2019-04-02 13:40:31 UTC</pubDate>
         <guid>https://padlet.com/morezane/8jeo6mexms7e/wish/347619076</guid>
      </item>
      <item>
         <title></title>
         <author>morezane</author>
         <link>https://padlet.com/morezane/8jeo6mexms7e/wish/347620071</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://www.youtube.com/watch?v=m46QWpyx-ks" />
         <pubDate>2019-04-02 13:42:20 UTC</pubDate>
         <guid>https://padlet.com/morezane/8jeo6mexms7e/wish/347620071</guid>
      </item>
   </channel>
</rss>
