mamot.fr is one of the many independent Mastodon servers you can use to participate in the fediverse.
Mamot.fr est un serveur Mastodon francophone, géré par La Quadrature du Net.

Server stats:

3.5K
active users

#rgbled

1 post1 participant0 posts today
Andy Warburton ❌❌❌<p>I think I’m happy with this enclosure design! All goes together with friction. No screws needed! <a href="https://mastodon.social/tags/3dprinting" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>3dprinting</span></a> <a href="https://mastodon.social/tags/3dprinted" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>3dprinted</span></a> <a href="https://mastodon.social/tags/wled" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>wled</span></a> <a href="https://mastodon.social/tags/rgbled" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>rgbled</span></a> <a href="https://mastodon.social/tags/rgb" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>rgb</span></a> <a href="https://mastodon.social/tags/neopixel" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>neopixel</span></a> <a href="https://mastodon.social/tags/maker" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>maker</span></a> <a href="https://mastodon.social/tags/makers" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>makers</span></a> <a href="https://mastodon.social/tags/electronics" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>electronics</span></a></p>
Simple DIY Electronic Music Projects<p><strong>Duppa I2C MIDI Controller – Part&nbsp;3</strong></p><p>This is a follow up post to <a href="https://diyelectromusic.com/2025/03/17/duppa-i2c-midi-controller-part-2/" rel="nofollow noopener noreferrer" target="_blank">Part&nbsp;2</a> expanding on the code and adding in some of the alternative control options I mentioned.</p><p><a href="https://makertube.net/w/ncLFMqBwCUcrrM4r3mHJwd" rel="nofollow noopener noreferrer" target="_blank">https://makertube.net/w/ncLFMqBwCUcrrM4r3mHJwd</a></p><p><em><strong>Warning!</strong> I strongly recommend using old or second hand equipment for your experiments.&nbsp; I am not responsible for any damage to expensive instruments!</em></p><p>If you are new to Arduino, see the&nbsp;<a href="https://diyelectromusic.wordpress.com/getting-started/" rel="nofollow noopener noreferrer" target="_blank">Getting Started</a> pages.</p><p><strong>Parts list</strong></p><ul><li>Arduino Uno/Nano.</li><li>DuPPa small RGB LED Ring.</li><li>10K potentiometer.</li><li>KY-040 rotary encoder module.</li><li>Bespoke hook-up wires (available from duppa.net).</li><li>Breadboard and jumper wires.</li></ul><p><strong>The Circuit</strong></p><p>This circuit shows all three control options on the same diagram, but naturally use whichever one you require. There are the following three options:</p><ul><li>Duppa I2C Encoder (from the previous project) on A4, A5 (SDA, SCL).</li><li>Plain potentiometer on A0.</li><li>Rotary encoder on D10, D11, D12.</li></ul><p>In addition to the I2C LED Ring on A4, A5 (SDA, SCL) of course.</p><p>Here is a separate diagram for the endless potentiometer. I can be used alongside the above, but I’ve drawn it on its own for clarity.</p><p>Mine has the pins in the following order: Wiper A, GND, Wiper B, VCC.</p><p><strong>The Code</strong></p><p>This uses the code from <a href="https://diyelectromusic.com/2025/03/17/duppa-i2c-midi-controller-part-2/" rel="nofollow noopener noreferrer" target="_blank">Part&nbsp;2</a> as a starting point and adds in some additional features.</p><p>The main aim is to add additional control options and then make them selectable in code. There are several definitions at the top of the file. One of them should be uncommented to enable that control option.</p><pre>//#define CC_ENCODER<br>#define CC_POTENTIOMETER<br>//#define CC_I2CENCODER<br>//#define CC_ENDLESSPOT</pre><p>Each control method will have some associated functions, but the interface will be hidden away behind these definitions and called from the main code, something like the following.</p><pre>#ifdef CC_ENCODER<br>#include &lt;librarycode.h&gt;<br>... control specific definitions ....<br><br>void encSetup() {<br>// Control specific setup code<br>}<br><br>void encLoop() {<br>// Control specific loop code<br>}<br>#else<br>void encSetup() {}<br>void encLoop() {}<br>#endif<br></pre><p>If that control option is not enabled, then it will just end up with the two empty functions.</p><p><strong>Normal Potentiometer</strong></p><p>This is fairly straightforward. I’m using the averaging technique I’ve mentioned before (<a href="https://diyelectromusic.com/2024/12/14/arduino-midi-master-volume-control/" rel="nofollow noopener noreferrer" target="_blank">details here</a>) and include a counter so that the pot isn’t read on every scan, otherwise it slows down all other processing significantly.</p><p>The pot reading is scaled down to 7-bits from the default 10-bit value with a bitshift.</p><p>I’ve opted to have a jump if the CC value is updated over MIDI rather than anything more sophisticated, as that is probably the simplest.</p><p>All the same display options are available as used previously: one LED per CC; scaled to multiples of the ring size; or scaled to a single ring.</p><p>This works quite well with all of them, but probably makes most sense when the MIDI CC range is scaled to a single revolution of the LED ring.</p><p>CC_WRAP has no effect when used with a normal potentiometer, as the pot itself does not wrap around.</p><p><strong>Rotary Encoder</strong></p><p>This is using the same encoder library I’ve used before in my <a href="https://diyelectromusic.com/2021/09/28/arduino-midi-rotary-encoder-controller/" rel="nofollow noopener noreferrer" target="_blank">Arduino MIDI Rotary Encoder&nbsp;Controller</a>. This makes the scanning code relatively straight forward.</p><p>I’ve refactored out the increment/decrement functions from the I2C encoder code into midiCCIncrement and midiCCDecrement, so these can now be used by both encoder options.</p><p>These encoder modules are often switched, but I’m not making use of the switch here.</p><p>Once again, all the same display options are available: one LED per CC; scaled to multiples of the ring size; or scaled to a single ring. CC_WRAP can be on or off.</p><p><strong>Endless Potentiometer</strong></p><p>There is a detailed discussion of how these work here: <a href="https://hackaday.io/project/171841-driveralgorithm-for-360-deg-endless-potentiometer" rel="nofollow noopener noreferrer" target="_blank">https://hackaday.io/project/171841-driveralgorithm-for-360-deg-endless-potentiometer</a><br>My initial thought was that I could just use one of the wipers, assuming it would go from 0 to full resistance and immediately back to zero, but they don’t – they gradually go from 0 to full resistance and then gradually back to 0 again. See the diagram in the above link.</p><p>This means that some processing is required to get a single reading out of them, so I ended up using a library from here:</p><ul><li><a href="https://github.com/juanlittledevil/EndlessPotentiometer" rel="nofollow noopener noreferrer" target="_blank">https://github.com/juanlittledevil/EndlessPotentiometer</a></li></ul><p>Well actually, I ended up using the slight variant of the library as used on the “Ottopot” MIDI controller, which can be found here:</p><ul><li><a href="https://codeberg.org/gerotakke/ottopot" rel="nofollow noopener noreferrer" target="_blank">https://codeberg.org/gerotakke/ottopot</a></li></ul><p>In my case I just dropping in the endlesspotentiometer.cpp/h files into my Arduino sketch (swapping any includes from &lt;&gt; to “” in the process). There was one reference to main.h that needed removing, and it required a definition of MAX_POT_VALUE which is 1023 for an Arduino Uno.</p><p>Then the code is fairly straight forward as the library is able to give an indication of direction and how much the pot has moved.</p><p>One thing to watch out for – I wanted this to be able to act on midiCC in a relative manner, replication the benefits of an encoder, but with a potentiometer, so I needed to know how much the pot had changed and then add that to the current midiCC value, rather than set it directly.</p><p>To do this I allowed midiCCIncrement/Decrement to take a parameter – how far to increase or decrease midiCC.</p><p>The core code for handling the endless pot was thus:</p><pre>endpot.updateValues(epot1.avgeAnalogRead(PIN_EALG_1),<br> epot2.avgeAnalogRead(PIN_EALG_2));<br>if (endpot.isMoving) {<br> if (endpot.direction == endpot.CLOCKWISE) {<br> midiCCIncrement(endpot.valueChanged);<br> } else if (endpot.direction == endpot.COUNTER_CLOCKWISE) {<br> midiCCDecrement(endpot.valueChanged);<br> }<br>}</pre><p>I also turned the potentiometer averaging code into a class of its own so I could also use it here for both analog readings of the endless pot.</p><p>It took a bit of experimentation with the sensitivity and threshold settings and how they interacted with the frequency of reading, but I’ve ended up with something that seems to work ok for me.</p><p><strong>Summary</strong></p><p>Although at the start I said that one of the options should be commented out to select it, in reality, if the devices are all on separate IO pins, then actually they can all be enabled at once.</p><p>And it does seem to work pretty well, with all four methods: I2C encoder, plain encoder, potentiometer – all interacting as you might expect they would.</p><p><a href="https://github.com/diyelectromusic/sdemp/tree/main/src/SDEMP/ArduinoMIDICCLedController2" rel="nofollow noopener noreferrer" target="_blank">Find it on GitHub here</a>.</p><p><strong>Closing Thoughts</strong></p><p>I was quite surprised how usable everything was with all four input methods enabled. I probably wouldn’t recommend it for typical use, but it was a bit of fun.</p><p>It is particularly satisfying to sweep through the entire range using the pot with “one LED per CC” enabled, even though scaling a single ring to the potentiometers range makes more sense (to me).</p><p>At some point I will try to get several controls up and running.</p><p>Kevin</p><p><a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://diyelectromusic.com/tag/arduino-nano/" target="_blank">#arduinoNano</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://diyelectromusic.com/tag/duppa/" target="_blank">#duppa</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://diyelectromusic.com/tag/endless-potentiometer/" target="_blank">#endlessPotentiometer</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://diyelectromusic.com/tag/i2c/" target="_blank">#i2c</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://diyelectromusic.com/tag/midi/" target="_blank">#midi</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://diyelectromusic.com/tag/potentiometer/" target="_blank">#potentiometer</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://diyelectromusic.com/tag/rgb-led/" target="_blank">#rgbLed</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://diyelectromusic.com/tag/rotary-encoder/" target="_blank">#rotaryEncoder</a></p>
Simple DIY Electronic Music Projects<p><strong>Duppa I2C MIDI Controller – Part&nbsp;2</strong></p><p>This is a follow up post to <a href="https://diyelectromusic.com/2025/03/09/duppa-i2c-midi-controller-part-1/" rel="nofollow noopener noreferrer" target="_blank">Part&nbsp;1</a> where I’m starting to look at MIDI applications and a range of control options.</p><p>Since posting the first part, I’ve stumbled across a rather excellent DIY MIDI controller that uses 8 of these Duppa LED rings and 8 endless potentiometers (which I hadn’t realised was even a thing!). It is a fantastic build, based on a Teensy and PlatformIO and I totally recommend going and taking a look. Read about it here: <a href="https://gerotakke.de/ottopot/" rel="nofollow noopener noreferrer" target="_blank">https://gerotakke.de/ottopot/</a>.</p><p><a href="https://makertube.net/w/2oKgvpZ29L2oExanSaUXjE" rel="nofollow noopener noreferrer" target="_blank">https://makertube.net/w/2oKgvpZ29L2oExanSaUXjE</a></p><p><em><strong>Warning!</strong> I strongly recommend using old or second hand equipment for your experiments.&nbsp; I am not responsible for any damage to expensive instruments!</em></p><p>If you are new to Arduino, see the&nbsp;<a href="https://diyelectromusic.wordpress.com/getting-started/" rel="nofollow noopener noreferrer" target="_blank">Getting Started</a> pages.</p><p><strong>Parts list</strong></p><ul><li>Arduino Uno/Nano.</li><li>DuPPa small RGB LED Ring.</li><li>Mini I2C Encoder.</li><li>Bespoke hook-up wires (available from duppa.net).</li><li>Breadboard and jumper wires.</li></ul><p><strong>The Circuit</strong></p><p>I eventually want to include various options for controlling the ring and MIDI:</p><ul><li>Duppa I2C rotary encoder.</li><li>Plain rotary encoder.</li><li>Simple potentiometer.</li><li>Endless potentiometer.</li></ul><p>I don’t have any endless potentiometers yet, they are something I’ve only recently found exist, but I’ll post again when I get a chance to try them!</p><p>The required connections, naturally, are quite different for each case:</p><ul><li>Duppa I2C encoder: connects to SDA/SCL.</li><li>Plain rotary encoder: requires two digital IO pins.</li><li>Simple potentiometer: requires a single analog input.</li><li>Endless potentiometer: requires two analog inputs.</li></ul><p>In this first post, I’m just looking at the same Duppa I2C Encoder and LED Ring that I used in <a href="https://diyelectromusic.com/2025/03/09/duppa-i2c-midi-controller-part-1/" rel="nofollow noopener noreferrer" target="_blank">Part&nbsp;1</a> but am adding a 5V compatible MIDI module.</p><p><strong>The Code</strong></p><p>Once again, this is using the Duppa Arduino library: <a href="https://github.com/Fattoresaimon/ArduinoDuPPaLib/" rel="nofollow noopener noreferrer" target="_blank">https://github.com/Fattoresaimon/ArduinoDuPPaLib/</a></p><p><strong>CC, Pots, Encoders…</strong></p><p>The biggest issue I find with attempting to develop a MIDI CC controller is where is the authoritative definition of what the CC value actually is? What do I mean by that? Well we have the value in the synthesizer, defined on power up or via the on-board controls. And then we have the setting in the external MIDI controller. Until the MIDI controller sends an updated value to the synth, these will be different. And if the value on the synth changes locally, e.g. using knobs or controls on the synth, then they will be out of sync.</p><p>I’ve not found an easy answer to this, but what I’m planning is having the CC controller receive MIDI CC messages as well as send them. This means that if the CC value is changed directly on the synth, if the synth transmits that over MIDI, then it will be received by the external controller which can update its own value accordingly.</p><p>One problem with this is that there are two types of hardware controller: relative or absolute.</p><p>A rotary encoder is a relative controller – it turns in a direction and the value will increase or decrease accordingly. If the internal knowledge of the CC value changes, the encoder will just continue to increase of decrease from that new value instead.</p><p>A potentiometer is (usually) an absolute controller – it turns and has a value. If the internal knowledge of the CC value changes, then unless you have a motorised potentiometer, it will still be in the same place so on turning there will be a jump in value from the stored value to the new setting of the potentiometer.</p><p>One option to deal with absolute values is to have the new position value only become relevant once the turning “catches up” with the internal value and the starts adjusting it from that point onwards. But this can create a disjoint between the user experience of turning the knob and it actually changing anything. But on the plus side, absolute values are “remembered” when powered off – providing the knobs are left in the same place.</p><p>I’m hoping to use the encoders as a pseudo potentiometer. But it isn’t going to be possible to have a complete rotation considered the same as a full sweep of a potentiometer, as that will be down to the number of “detents” per rotation and that won’t be anything like enough to support 128 MIDI CC values. But I do plan to indicate the value by LEDS, and use those to indicate the position in the full sweep. This will allow the starting point to change if a CC message is received.</p><p>One solution to this problem, and that used by the Ottopot controller mentioned at the start, is to use an endless potentiometer. This not-only allows a variable starting position, but it also represents a full-sweep of values with a single turn as per a simple potentiometer.</p><p>So when I get hold of some of those I’ll come back to revisit this code.</p><p>For this first version there is code for the I2C encoder implemented using the following functions:</p><ul><li>i2cEncSetup()</li><li>i2cEncLoop()</li><li>i2cEncIncrement()</li><li>i2cEncDecrement()</li></ul><p>These are based on the code I used in <a href="https://diyelectromusic.com/2025/03/09/duppa-i2c-midi-controller-part-1/" rel="nofollow noopener noreferrer" target="_blank">Part&nbsp;1</a>. The increment and decrement functions act on a global “midiCC” directly, which stores the CC value to use using the range of a single MIDI “byte” 0 to 127. There is a compilation option to allow wrapping around (between 0 and 127) or not.</p><p><strong>MIDI Handler</strong></p><p>The Arduino MIDI library is used for both send and receive and all MIDI functionality is wrapped up in the following functions:</p><ul><li>midiSetup()</li><li>midiLoop()</li><li>midiControlChange()</li></ul><p>There are a few additional functions to give an optional LED indication of MIDI activity. Within the MIDI loop the midiCC value is checked and if it has changed then a MIDI control change message is transmitted:</p><pre>void midiLoop() {<br> MIDI.read();<br> if (lastMidiCC != midiCC) {<br> MIDI.sendControlChange(MIDI_CC, midiCC, MIDI_CHANNEL);<br> }<br>}</pre><p>There is an option to have software MIDI THRU enabled and this is handled as part of the MIDI.read() call. On setup midiControlChange() is installed as a handler function for MIDI CC messages and if the correct CC message is received on the correct MIDI channel then the midiCC value is updated directly.</p><p>One consequence of using midiCC directly and it being changed by either the encoder or from MIDI is that any change will also trigger the sending of the CC value out too.</p><p>This means that if MIDI THRU is enabled and a MIDI CC value is sent to the Arduino then it will almost certainly be sent back over MIDI twice – once as part of the THRU handling, and once as a consequence of it having changed the Arduino’s stored midiCC value.</p><p><strong>LED Ring Indicator</strong></p><p>The simplest implementation will be to scale the 24 LEDs of the ring to the 128 MIDI values and light up the LED that best represents the chosen value.</p><p>An alternative is to use one LED per MIDI CC value and allow the ring to loop round, possibly in a different colour. For 128 values across 24 LEDs this means there will be five full circles of the ring plus 8 more.</p><p>I’ve also provided the option to scale the MIDI CC values to a multiple of the LED ring so that the full MIDI 0..127 range wraps around back to 0 back at the start of the ring.</p><p>In the following, scalemax is the largest multiple of NUM_LEDS that will fit in 128, then the midiCC value is scaled to that new range and then used in the rest of the LED calculation.</p><pre>int scalemax = 128 - 128 % NUM_LEDS;<br>int midiCC_scaled = (midiCC * scalemax / 128);<br>nextLed = midiCC_scaled % NUM_LEDS;<br>uint32_t col=0;<br>if (midiCC_scaled &lt; NUM_LEDS) {<br> col = 0x00003F;<br>} else if (midiCC_scaled &lt; NUM_LEDS*2) {<br> col = 0x003F3F;<br>} else if (midiCC_scaled &lt; NUM_LEDS*3) {<br> col = 0x003F00;<br>} else if (midiCC_scaled &lt; NUM_LEDS*4) {<br> col = 0x3F3F00;<br>} else if (midiCC_scaled &lt; NUM_LEDS*5) {<br> col = 0x3F0000;<br>} else {<br> col = 0x3F003F;<br>}</pre><p>One quirk to note is that the LEDs are numbered anti-clockwise, so at some point I’ll have to reverse the LED number when it comes to presenting an increasing CC value as a clockwise changing display.</p><p>I’d also like to have a bit of a lazy, dragging LED change, so I want to implement something that fades illuminated LEDs out as the value changes, leaving some kind of “tail” as the LED moves.</p><p>To do this, I’ve used an array to store the colour value used for any illuminated LEDs and then at regular intervals that colour is updated to fade back to OFF.</p><p>I’ve implemented a relatively simple fade – basically each of the R, G and B components of the colour is bit-shifted to the right by 1 on each “scan”. This has the effect of continually dividing the colour value by 2 until it reaches 0. The only thing to watch out for is that I don’t do this for the current illuminated LED.</p><p>Also note that I only pull out the most significant 7 bits of each 8 bit value (by &amp; 0xFE) so that the shift doesn’t map the least significant bit of one value down into the next colour.</p><pre>for (int i=0; i&lt;NUM_LEDS; i++) {<br> if (i != nextLed &amp;&amp; ledMap[i] &gt; 0) {<br> uint32_t newcol = ((ledMap[i] &amp; 0xFE0000) &gt;&gt; 1)<br> + ((ledMap[i] &amp; 0x00FE00) &gt;&gt; 1)<br> + ((ledMap[i] &amp; 0x0000FE) &gt;&gt; 1);<br> LEDRingSmall.LEDRingSmall_Set_RGB(i, newcol);<br> ledMap[i] = newcol;<br> }<br>}</pre><p>All the LED handling is wrapped up in the following functions:</p><ul><li>ledSetup()</li><li>ledLoop()</li><li>ledIndex()</li></ul><p>The last function is responsible for swapping the LED numbers around to make them go clockwise. It isn’t as simple as doing NUMLEDS – led as I still want the first LED to be at “12 o’clock”, hence the function to return the correct index.</p><p><a href="https://github.com/diyelectromusic/sdemp/tree/main/src/SDEMP/ArduinoMIDICCLedController" rel="nofollow noopener noreferrer" target="_blank">Find it on GitHub here</a>.</p><p><strong>Closing Thoughts</strong></p><p>I am so pleased with that lazy LED change effect.</p><p>Having so many turns of the encoder isn’t particularly practical at the moment, but it does work. It is certainly good to have a few configuration options – especially the option to wrap around, as it takes quite a few turns to get from 0 to 127.</p><p>In a follow up post I’ll take a look at some of the other options, and when I get my endless encoders in the post that will definitely get a mention too.</p><p>I also want to wrap up the existing code somehow to allow for several LED CC controls if required and some kind of box might also be nice.</p><p>Kevin</p><p><a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://diyelectromusic.com/tag/arduino-nano/" target="_blank">#arduinoNano</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://diyelectromusic.com/tag/duppa/" target="_blank">#duppa</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://diyelectromusic.com/tag/i2c/" target="_blank">#i2c</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://diyelectromusic.com/tag/midi/" target="_blank">#midi</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://diyelectromusic.com/tag/rgb-led/" target="_blank">#rgbLed</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://diyelectromusic.com/tag/rotary-encoder/" target="_blank">#rotaryEncoder</a></p>
IT News<p>Some Useful Notes On The 6805-EC10 Addressable RGB LED - LEDs are getting smaller and smaller, and the newest generations of indexable RGB ... - <a href="https://hackaday.com/2025/03/12/some-useful-notes-on-the-6805-ec10-addressable-rgb-led/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">hackaday.com/2025/03/12/some-u</span><span class="invisible">seful-notes-on-the-6805-ec10-addressable-rgb-led/</span></a> <a href="https://schleuss.online/tags/addressableled" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>addressableled</span></a> <a href="https://schleuss.online/tags/ledhacks" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ledhacks</span></a> <a href="https://schleuss.online/tags/rgbled" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>rgbled</span></a> <a href="https://schleuss.online/tags/sk6805" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>sk6805</span></a> <a href="https://schleuss.online/tags/kicad" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>kicad</span></a></p>
Simple DIY Electronic Music Projects<p><strong>Duppa I2C MIDI Controller – Part&nbsp;1</strong></p><p>I’ve had my eye on <a href="https://www.duppa.net/" rel="nofollow noopener noreferrer" target="_blank">Duppa’s</a> rather neat looking I2C LED rings and rotary encoders for some time and finally pushed “go” on getting a couple. I want to use them as the basis for a MIDI controller but this post is just my “getting to know them” post.</p><p>A follow-up will build on this knowledge to get them going with MIDI.</p><p><em><strong>Warning!</strong> I strongly recommend using old or second hand equipment for your experiments.&nbsp; I am not responsible for any damage to expensive instruments!</em></p><p>If you are new to Arduino, see the&nbsp;<a href="https://diyelectromusic.wordpress.com/getting-started/" rel="nofollow noopener noreferrer" target="_blank">Getting Started</a> pages.</p><p><strong>Parts list</strong></p><ul><li>Arduino Uno/Nano</li><li>DuPPa small RGB LED Ring and mini I2C Encoder.</li><li>Bespoke hook-up wires (available from duppa.net).</li><li>Breadboard and jumper wires</li></ul><p><strong>Duppa I2C Devices</strong></p><p>There are several interesting devices, two variants of LED ring, and two variants of I2C connected rotary encoders. They are all pretty interesting devices, and the cascading nature of, especially the I2C encoders, has massive potential for a range of interesting MIDI controllers!</p><p>I have the following devices:</p><ul><li><a href="https://www.duppa.net/shop/i2c-encoder-mini/" rel="nofollow noopener noreferrer" target="_blank">I2CEncoder Mini</a></li><li><a href="https://www.duppa.net/shop/rgb-led-ring-small/" rel="nofollow noopener noreferrer" target="_blank">RGB LED Ring Small</a></li></ul><p>A couple of points to note about these:</p><ul><li>The LED ring has jumpers for I2C address and optional I2C pull-ups.</li><li>The encoder has a software-configurable I2C address and optional I2C pullups.</li><li>Both have a supporting library and code on GitHub here: <a href="https://github.com/Fattoresaimon/ArduinoDuPPaLib" rel="nofollow noopener noreferrer" target="_blank">https://github.com/Fattoresaimon/ArduinoDuPPaLib</a></li><li>Both have hardware designs and additional information on GitHub too:<ul><li><a href="https://github.com/Fattoresaimon/I2CEncoderMini" rel="nofollow noopener noreferrer" target="_blank">https://github.com/Fattoresaimon/I2CEncoderMini</a></li><li><a href="https://github.com/Fattoresaimon/RGB_LED_Ring_Small" rel="nofollow noopener noreferrer" target="_blank">https://github.com/Fattoresaimon/RGB_LED_Ring_Small</a></li></ul></li></ul><p><strong>Duppa LED Rings</strong></p><strong>LED Ring Small</strong><strong>LED Ring</strong>24 RGB LEDs48 RGB LEDsIS31FL3746A controllerIS31FL3745 controllerCascade up to 15 ringsCascade up to 16 rings<p>Both LED rings support the following (from the product pages):</p><ul><li>Individual 256 PWM control steps</li><li>Individual 256 DC current steps</li><li>Global 256 step current setting</li><li>29kHz PWM frequency</li><li>Individual open and short error detect function</li><li>1MHz I2C-compatible interface</li><li>Supply voltage range: 2.7V to 5.5V</li></ul><p>And they share a cable interface using a Molex “Picoblade” connector at 1.25mm pitch, with the following pinout:</p>VCCLED supply voltage2.7V – 5.5VGNDGround0VVIOLogic supply voltage2.7 – 5.5VSDAI2C dataSame as VIOSCLI2C clockSame as VIO<p>Note, at first glance, especially as these are I2C devices, it is easy to imagine that these are compatible with standards such as Qwicc, Stemma, Grove, and so on. They are not (<a href="https://emalliab.wordpress.com/2025/02/11/stemma-grove-qt-gravity-duppa-i2c/" rel="nofollow noopener noreferrer" target="_blank">more here</a>).</p><p>These are designed so that the LEDs can be powered independently from the logic to allow for higher current if required. This includes using 5V for LEDs and 3V3 for the logic. Apparently both rings state a “all LEDs on” current of 450mA. I don’t know if this is a typo…</p><p>The connectors are paired so it is possible to have an “in” and “out” connection allowing for up to 15 or 16 rings to be cascaded, providing different I2C addresses are set via the configuration jumpers. The address range is 0x60 to 0x7E (in steps of two).</p><p>Naturally using more rings will definitely require an independent LED power supply that can provide the maximum required current.</p><p><strong>Duppa I2C Encoders</strong></p><p>There are two variants of I2C encoder (actually there are also some older versions of them too, which are not compatible, but I’m ignoring those).</p><strong>I2CEncoder Mini</strong><strong>I2C Encoder</strong>Programmable I2C addressSolder jumper I2C addressATtiny 402PIC16F18345Cascade in one dimensionCascade in two-dimensional matrixRGB LED support3 GPIO pins<p>Some common features:</p><ul><li>3V3 to 5V operation.</li><li>Available with 2.54mm pin headers or JST-XH sockets.</li><li>400 kHz I2C.</li><li>Interrupt line.</li><li>Optional I2C pull-ups via solder jumper.</li></ul><p>Both share a common 2.54mm pitch connector and has options for pin headers or JST-XH sockets fitted. The pinout is slightly different to the LED rings, as follows:</p>GNDGroundVCC3V3 to 5V powerSDAI2C DataSCLI2C ClockINTOpen drain interrupt signal.<p>Once again these might superficially appear compatible with the likes of Grove and other I2C common options, but they are not.</p><p>Also, pretty critically, it should be noted that GND and VCC are the opposite way round to the LED rings, and that SDA/SCL are in different places in the five pins.</p><p>The I2C Address for the Mini encoder has to be set in software. The default is 0x20, but it would appear that any of the 128 addresses (apart from 0) could be used. A utility sketch is <a href="https://github.com/Fattoresaimon/ArduinoDuPPaLib/blob/master/examples/I2CEncoderMini/Change_Address/Change_Address.ino" rel="nofollow noopener noreferrer" target="_blank">provided on GitHub</a> and as part of the support library (see below), to set the address.</p><p>Note: the full LED ring has 7 address jumpers which will set the 7-bit address in binary directly in hardware.</p><p>There are datasheets for both encoders in the respective GitHub repositories. <a href="https://github.com/Fattoresaimon/I2CEncoderMini/blob/master/I2CEncoderMini_v1.2.pdf" rel="nofollow noopener noreferrer" target="_blank">Here is the one for the I2CEncoder Mini</a>.</p><p><strong>Getting Started</strong></p><p>My plan is to use an LED ring and encoder as a pair, on the I2C bus as a MIDI controller. This means deciding on I2C addresses, pull-up configuration, and connections.</p><p>All Duppa devices have options for buying compatible cables, so I would advise getting a range for experimentation. My first task was to crimp some jumper header pins onto each of the cables.</p><p>For my initial experiments I’ve gone with the following configuration</p><ul><li>Enable I2C pull-ups on the LED ring.</li><li>Use LED ring base address of 0x60 (solder S1, S5).</li><li>Use Encoder default base address of 0x20.</li></ul><p>This requires the I2C pull-up, S1, and S5 solder bridges making on the LED ring, but means I can use the encoder “as is” (for now).</p><p>The following shows the connections to an Arduino Nano. </p><p>Note that this is powering the LED ring directly from the Nano’s 5V, which itself is powered from the USB socket. Most standard USB sockets would be good for around 500mA I believe, so this should be ok, especially if all LEDs are not on at the same time at full brightness.</p><p>Other things to note:</p><ul><li>For the 5-wire links to the devices, I’ve used the colours that came with the wires I’d ordered from Duppa.net.</li><li>Notice how 5V/GND are swapped for the two devices.</li><li>I’ve used 5V for both the LED VCC and logic VIO for the LED ring.</li><li>In both cases SDA/SCL are cascaded up to the Nanos A4 (SDA), A5 (SCL).</li><li>The encoders interrupt line is connected to A3.</li></ul><p><strong>A note on pull-ups</strong></p><p>As already mentioned, I’ve enabled hardware pull-up resistors on the I2C bus by enalbing the solder bridge on the LED ring to connect both on-board I2C 4K7 pull-ups to VCC. Another option would have been to add external 4K7 resistors on the solderless breadboard between both SDA and SCL and VCC (5V).</p><p>Another option would have been to solder bridge the I2C pull-ups on the encoder instead.</p><p>Generally speaking I2C needs pull-ups somewhere and there are several approaches:</p><ul><li>Use a microcontroller with hardware pull-ups on SDA and SCL (internal pull-ups aren’t usually “strong” enough for I2C as a rule);</li><li>Add pull-ups on one of the devices connected to the bus;</li><li>Use external pull-ups.</li></ul><p>There are pros/cons of each. The Arduino doesn’t include additional pull-ups on I2C, but the Raspberry Pi does. Adafruit devices often include an option for enabling pull-ups on each device. It might be possible to use the internal pull-ups on a microcontroller, but they are often considered to be “weak” pull-ups (on an ATMega328 internal pull-ups around ~20-50k) and may not be suitable for the higher speeds of the I2C bus.</p><p>Only one set of pull-ups is typically required on the bus. Enabling more may work, but essentially puts the pull-ups in parallel with each other, which lowers the resistance used. I2C seems pretty tolerant of a wide range of pull-up values, so it might be fine for many purposes, but eventually it could lead to current draw issues one presumes.</p><p>There is also the issue of what a pull-up should pull up to. If a device is powered using 5V, but the I2C bus is running at 3V3 because it is interfacing to a 3V3 logic microcontroller, then pull-ups need to be 3V3 too.</p><p>Some references for pull-up resistors:</p><ul><li><a href="https://learn.sparkfun.com/tutorials/pull-up-resistors/" rel="nofollow noopener noreferrer" target="_blank">https://learn.sparkfun.com/tutorials/pull-up-resistors/</a></li><li><a href="https://learn.adafruit.com/working-with-i2c-devices/pull-up-resistors" rel="nofollow noopener noreferrer" target="_blank">https://learn.adafruit.com/working-with-i2c-devices/pull-up-resistors</a></li><li><a href="https://support.arduino.cc/hc/en-us/articles/11153357842588-I2C-and-pull-up-resistors" rel="nofollow noopener noreferrer" target="_blank">https://support.arduino.cc/hc/en-us/articles/11153357842588-I2C-and-pull-up-resistors</a></li></ul><p>The interrupt signal for the I2CEncoder should also include a pull-up resistor, but in this case, as it is not part of the high-speed I2C bus, the internal resistor of either the microcontroller or encoder should suffice.</p><p>There is a configuration option for the encoder to tell it to enable the pull-up on the interrupt line, so this is used.</p><p><strong>The Code</strong></p><p>There is an Arduino library available for all of the Duppa products here: <a href="https://github.com/Fattoresaimon/ArduinoDuPPaLib/" rel="nofollow noopener noreferrer" target="_blank">https://github.com/Fattoresaimon/ArduinoDuPPaLib/</a></p><p>This has to be downloaded as a ZIP file of the whole repository and then loaded into the Arduino environment using the “Include Library”-&gt;”Add ZIP Library” option.</p><p>To verify what I2C addresses are being used, a simple I2C scanner sketch can be used: <a href="https://playground.arduino.cc/Main/I2cScanner/" rel="nofollow noopener noreferrer" target="_blank">https://playground.arduino.cc/Main/I2cScanner/</a></p><p>In my case this returns:</p><pre>I2C Scanner<br>Scanning...<br>I2C device found at address 0x20 !<br>I2C device found at address 0x60 !<br>done</pre><p>As already mentioned if the I2C address of the I2CEncoder Mini needs to be changed there is a sketch in the DuPPa library examples to do this:</p><ul><li>Examples -&gt; DuPPa Library -&gt; I2CEncoderMini -&gt; Change_Address.</li></ul><p>It is worth ensuring the provided examples work before going further.</p><p><strong>LED Ring Demo</strong></p><ul><li>Examples -&gt; DuPPa Library -&gt; RGB LED Ring Small -&gt; LEDRingSmall_Demo</li></ul><p>The I2C address can be set at the start as follows:</p><pre>LEDRingSmall LEDRingSmall(ISSI3746_SJ1 | ISSI3746_SJ5);</pre><p>I also limited the “global current” by changing 0xFF (255) in two places near the end of the loop() to 0x20 (32):</p><pre>for (i = 0x20; i &gt; 0; i--) { // Was 0xFF<br> LEDRingSmall.LEDRingSmall_GlobalCurrent(i);<br> delay(20);<br>}<br>LEDRingSmall.LEDRingSmall_ClearAll();<br>LEDRingSmall.LEDRingSmall_GlobalCurrent(0x20); // Was 0xFF</pre><p>There are a few other calls to LEDRingSmall_GlobalCurrent() which the library API notes sets the Global Current Control Register in the IS31FL3746A according to Table 10 in the datasheet.</p><p>I must admit it isn’t totally clear to me exactly how this works, but various descriptions describe a limiting function on the global current used in 256 steps with 0 being the lowest and 255 (0xFF) being the highest/brightest. The datasheet says that the default is 0, so presumably if this call isn’t used then there will be no output. One section of the demo turns on all LEDs and steps through the global current values from 255 down to 0. I changed this to 32 (0x20) down to 0.</p><p>In fact this is a common feature of the library, it appears to be a fairly shallow shim over the direct registers of the IS31FL3746A, so some knowledge of the datasheet is required to use it properly. Although I suspect that for many cases, just starting with the default demo program and fiddling about will probably go quite a long way.</p><p>The main LED functions, once the setup is complete, take a LED number and will either set a RGB colour or can set the individual colour levels of red, green or blue from 0 to 255.</p><pre>led = 0..23<br>rgb = 0x000000 .. 0xFFFFFF<br>LEDRingSmall_Set_RGB(led, rgb);<br><br>led = 0..23<br>level = 0 .. 255<br>LEDRingSmall_Set_RED(led, level);<br>LEDRingSmall_Set_GREEN(led, level);<br>LEDRingSmall_Set_BLUE(led, level);</pre><p><strong>I2C Encoder Demo</strong></p><ul><li>Examples -&gt; DuPPa Library -&gt; I2CEncoderMini -&gt; Basic_with_Callbacks</li></ul><p>The I2C address and Interrupt pin are required:</p><pre>const int IntPin = A3;<br>i2cEncoderMiniLib Encoder(0x20);</pre><p>The demo code uses callbacks from the library to perform various actions depending on the state of the encoder. The following events are tracked (and reported via the serial console):</p><pre>onIncrement<br>onDecrement<br>onMax<br>onMin<br>onButtonPush<br>onButtonRelease<br>onButtonDoublePush<br>onButtonLongPush</pre><p>The interrupt pin is enabled using autoconfigInterrupt() and also relies on the internal pull-up being enabled on the encoder. This is part of the configuration provided on initialisation.</p><pre>i2cEncoderMiniLib Encoder(0x20);<br><br>Encoder.reset();<br>Encoder.begin( i2cEncoderMiniLib::WRAP_DISABLE<br> | i2cEncoderMiniLib::DIRE_LEFT<br> | i2cEncoderMiniLib::IPUP_ENABLE<br> | i2cEncoderMiniLib::RMOD_X1<br>);</pre><p>Whilst the interrupt pin is enabled at the encoder end, it doesn’t actually cause an interrupt on the Arduino. The main loop just polls the relevant INPUT pin and uses it to decide if the encoder needs checking:</p><pre>void loop() {<br> if (digitalRead(IntPin) == LOW) {<br> /* Check the status of the encoder and call the callback */<br> Encoder.updateStatus();<br> }<br>}</pre><p>I’m guessing this is better than continually scanning the I2C bus to see if there is anything to do, assuming there is a spare GPIO pin to connect up.</p><p>Some other points of note for use of the library:</p><ul><li>It is possible to enable/disable some of the interrupt sources using writeInterruptConfig(), but it can also be automatically configured by calling autoconfigInterrupt() once all the callbacks have been specified for just the sources that match the callbacks.</li><li>There are three types of encoder supported, representing by the X1, X2, X4 definitions.</li><li>There is a method for ChangeI2CAddress() but this should not be used in general purpose code. It only really makes sense in the utility sketch already mentioned for one-time setting of the I2C address of the encoder.</li><li>There is a block of EEPROM that can be accessed using readEEPROM()/writeEEPROM() which might come in handy.</li></ul><p><strong>Encoder driven LED Ring</strong></p><p>Combining elements of both demos here is a short sketch that uses the encoder to rotate an LED pattern around the ring.</p><pre>#include &lt;Wire.h&gt;<br>#include &lt;i2cEncoderMiniLib.h&gt;<br>#include "LEDRingSmall.h"<br><br>const int IntPin = A3;<br>i2cEncoderMiniLib Encoder(0x20);<br>LEDRingSmall LEDRingSmall(ISSI3746_SJ1 | ISSI3746_SJ5);<br><br>#define MAX_RGB 0x7F<br><br>int tim,last;<br>int dir;<br>int r, g, b, rg, br, bg;<br>#define INCR(x) (x)+=dir; if ((x)&gt;=24) {(x)=0;} else if ((x)&lt;0) {(x)=23;}<br><br>void encoder_increment(i2cEncoderMiniLib* obj) {<br> dir = 1;<br> tim ++;<br>}<br><br>void encoder_decrement(i2cEncoderMiniLib* obj) {<br> dir = -1;<br> tim--;<br>}<br><br>void setup() {<br> pinMode(IntPin, INPUT);<br> dir = 0;<br> tim = 0;<br> last = 1;<br><br> Wire.begin();<br> Wire.setClock(400000);<br><br> LEDRingSmall.LEDRingSmall_Reset();<br> delay(20);<br><br> LEDRingSmall.LEDRingSmall_Configuration(0x01); //Normal operation<br> LEDRingSmall.LEDRingSmall_PWMFrequencyEnable(1);<br> LEDRingSmall.LEDRingSmall_SpreadSpectrum(0b0010110);<br> LEDRingSmall.LEDRingSmall_GlobalCurrent(0x10);<br> LEDRingSmall.LEDRingSmall_SetScaling(0xFF);<br> LEDRingSmall.LEDRingSmall_PWM_MODE();<br><br> Encoder.reset();<br> Encoder.begin(i2cEncoderMiniLib::WRAP_DISABLE<br> | i2cEncoderMiniLib::DIRE_LEFT<br> | i2cEncoderMiniLib::IPUP_ENABLE<br> | i2cEncoderMiniLib::RMOD_X1 );<br><br> Encoder.writeCounter((int32_t) 0); /* Reset the counter value */<br> Encoder.writeStep((int32_t) 1); /* Set the step to 1*/<br><br> Encoder.onIncrement = encoder_increment;<br> Encoder.onDecrement = encoder_decrement;<br><br> Encoder.autoconfigInterrupt();<br>}<br><br>void loop() {<br> dir = 0;<br> if (digitalRead(IntPin) == LOW) {<br> Encoder.updateStatus();<br> }<br><br> if (tim != last) {<br><br> if ((tim % 1) == 0) {<br> LEDRingSmall.LEDRingSmall_Set_RED(r, 0);<br> INCR(r);<br> LEDRingSmall.LEDRingSmall_Set_RED(r, MAX_RGB);<br> }<br><br> if ((tim % 2) == 0) {<br> LEDRingSmall.LEDRingSmall_Set_GREEN(g, 0);<br> INCR(g);<br> LEDRingSmall.LEDRingSmall_Set_GREEN(g, MAX_RGB);<br> }<br><br> if ((tim % 3) == 0) {<br> LEDRingSmall.LEDRingSmall_Set_BLUE(b, 0);<br> INCR(b);<br> LEDRingSmall.LEDRingSmall_Set_BLUE(b, MAX_RGB);<br> }<br><br> if ((tim % 4) == 0) {<br> LEDRingSmall.LEDRingSmall_Set_BLUE(br, 0);<br> LEDRingSmall.LEDRingSmall_Set_RED(br, 0);<br> INCR(br);<br> LEDRingSmall.LEDRingSmall_Set_BLUE(br, MAX_RGB);<br> LEDRingSmall.LEDRingSmall_Set_RED(br, MAX_RGB);<br> }<br><br> if ((tim % 5) == 0) {<br> LEDRingSmall.LEDRingSmall_Set_BLUE(bg, 0);<br> LEDRingSmall.LEDRingSmall_Set_GREEN(bg, 0);<br> INCR(bg);<br> LEDRingSmall.LEDRingSmall_Set_BLUE(bg, MAX_RGB);<br> LEDRingSmall.LEDRingSmall_Set_GREEN(bg, MAX_RGB);<br> }<br><br> if ((tim % 6) == 0) {<br> LEDRingSmall.LEDRingSmall_Set_RED(rg, 0);<br> LEDRingSmall.LEDRingSmall_Set_GREEN(rg, 0);<br> INCR(rg);<br> LEDRingSmall.LEDRingSmall_Set_RED(rg, MAX_RGB);<br> LEDRingSmall.LEDRingSmall_Set_GREEN(rg, MAX_RGB);<br> }<br> }<br> last = tim;<br>}</pre><p>This only uses the increment/decrement callbacks to set the direction (“dir”) and update the time (“tim”) that determines which direction the ring is moving.</p><p>It isn’t perfectly reversible – I liked the idea of winding the ring forward and back again – but it is pretty close. I suspect there is an off-by-one error somewhere that means it can get out of sync.</p><p>But it is plenty enough to show how it all works.</p><p><strong>Closing Thoughts</strong></p><p>These are great little boards. Having an I2C encoded in my case might be a bit over the top, but they are pretty easy to use.</p><p>The LED ring is awesome 🙂</p><p>Kevin</p><p><a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://diyelectromusic.com/tag/duppa/" target="_blank">#duppa</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://diyelectromusic.com/tag/i2c/" target="_blank">#i2c</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://diyelectromusic.com/tag/is31fl3746a/" target="_blank">#is31fl3746a</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://diyelectromusic.com/tag/rgb-led/" target="_blank">#rgbLed</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://diyelectromusic.com/tag/rotary-encoder/" target="_blank">#rotaryEncoder</a></p>
Rob Carlson :ally: :BLM:<p>I suspect I may have a favorite tint <a href="https://epistolary.org/tags/mechanicalkeyboard" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mechanicalkeyboard</span></a> <a href="https://epistolary.org/tags/flashlight" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>flashlight</span></a> <a href="https://epistolary.org/tags/rgbled" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>rgbled</span></a></p>