Sales Pitch
Feeling overwhelmed by choices? Who isnāt? Decision-making can be a maze. White, rye, or wheat? Pinstripes or polka dots? Feast or fast? But fret notāassistance is at hand!
Enter the worldās inaugural, handheld, portable decision-maker, fueled by genuinely random numbers. While my competitors offer decision-makers for 1, 5, 10, or 25 cents, can they navigate choices beyond two? No! Are their decisions authentically random? Absolutely not! My invention accommodates selections from up to 16 options, yielding truly unpredictable outcomes, in line with the principles of quantum (or, at the very least, statistical) mechanics.
Some might object, āBut Leon, Iām capable of making my own decisions.ā True, yet often, these decisions are arbitrary, lacking logic, and lead to regret. Why anguish over both the choice and its aftermath when you can focus solely on the latter? Embrace novelty! Release your worries! Bid farewell to determinism! Dispel the paradox of choice! Embrace randomnessāit might just be the change you need!
Operation
In comparison to most modern complexities, my mRNG operates quite straightforwardly. The device comprises solely two buttons and a single thumb wheel. To operate the mRNG, position it display side up, with the metal ring facing away from you as depicted in the image at the top of the page and demonstrated in the accompanying video.
The left button serves to power on the device. Press and hold this button to activate the device. It rapidly generates a new number approximately 30 times per second, making it too quick for direct reading. Holding down the second button freezes the screen update, enabling you to view the most recent random number generated.
The thumb wheel adjusts the upper limit of the random number range, spanning from 0 to that specific upper boundary. This upper limit can be set to a maximum of 15. Given that the display features only a single digit, the numbers are represented in hexadecimal format (where 10 to 15 are displayed as a-f). Altering the range prompts the new upper limit to be displayed for around 0.75 seconds before the generation of more random numbers resumes. Upon powering on, the device will also briefly display the current upper limit for the same duration.
Itās important to note that ā6ā and ābā (representing 11 in hexadecimal) might appear similar on the display. However, the distinction lies in the displayās top segment being lit for ā6ā but not for ābā. (Refer to the informative Wikipedia article on Seven-segment display character representations, specifically the left column of characters, for reference.)
Design notes
Fitting all components into a key fob required compactness. This aspect wasnāt inherently challenging, but it necessitated the use of a coin battery. To meet the requirement of drawing 4mA or less (the current version operates at 6-7mA, which is in close proximity), the strategy primarily involved selectively powering different sections of the circuit on and off as necessary. For instance, when generating a random number, the display remains off. The display elements themselves undergo rapid pulsing on and off, creating the impression of continuous activation (ensuring that no more than 4 segments are simultaneously active). Considering this, allow me to delve deeper into the design details. (Access to the source code and comprehensive schematic is available below.)
Microcontroller part
Instead of employing a PIC microcontroller (as I did in my previous project) or sequential logic, utilized in earlier versions, I opted for an AVR. Both had the necessary hardware features, yet the PIC lacked a freely available C compiler compatible with Linux and OS X. While coding in assembly was intriguing, I preferred allocating my time elsewhere. My choice fell on the ATtiny24 due to its appropriate pin count and inclusion of an analog-to-digital converter.
The microcontroller drives the LEDs via 1.2kĪ© resistors, a value selected to strike a balance between brightness and low current consumptionāalthough alternative values could also suffice. The switch doesnāt necessitate an external pull-up resistor as the microcontroller integrates internal ones. No efforts were made to debounce the switch as it proved unnecessary. The potentiometer is linked to the microcontrollerās analog-to-digital converter, setting the upper limit of the random number range.
The input for the random bit is connected via a digital input pin. Similarly, no debounce attempt was made, as the average frequency of the random digital output was significantly slower than the microprocessorās clock speed (1 MHz), rendering timing issues negligible. However, this assessment was conducted solely for the random bit generation circuit without considering the noise from the microcontroller. The software debiases the random digital input using the Von Neuman method and a linear feedback shift register, acting as a randomness extractor.
Operating at 1MHz, the microcontroller utilizes its 8MHz internal oscillator. Potential future versions might leverage the internal 128kHz oscillator to conserve power, though I anticipate the resultant savings to be minimal.
The source code is provided below for reference.
Random bit generating part
This design drew inspiration from Terry Ritterās random noise sources, where diodes are commonly employed for generating noise. However, acquiring noisy low voltage diodes is challenging. Hence, to mimic a zener diode, we utilize a 1.22V bandgap voltage reference (the ZXRE1004FFTA).
According to the datasheet, this voltage reference operates optimally with a current of no more than 8Ī¼A (typically 4Ī¼A), generating the most noise at this current level (refer to page 3). The aim is to run it at a current close to this specification to conserve power and extract maximum noise. Considering the MMBT3904 transistorās base to emitter voltage drop (~0.75V), the voltage referenceās drop (1.22V), and the supplied battery voltage (~3V), the expected drop across the resistor totals around 1V. Therefore, a 100kĪ© resistor (R1) permits approximately 10Ī¼A of current flow (likely slightly less due to battery voltage fluctuations).
Given this base current through the transistor and its gain of a few hundred, an anticipated ~2mA should flow through the transistorās collector. Aiming for an output of approximately 1.5V from the collector (in the middle of the voltage range), a 750Ī© resistor suffices. Yet, a nearby resistor value will suffice, so a 470Ī© resistor (R2) is chosen, resulting in a drop of approximately 1 volt.
This resultant signal passes through a capacitor for voltage level adjustment and is then amplified by an op-amp. Aiming for a digital signal, an āinfiniteā gain is sought from the amplifier. However, to maintain equal average voltage levels at the inputs, a very large resistor (1MĪ© ā R3) is used. Despite the high slew rate of the OPA2340ās output, the signal remains non-digital; hence, it undergoes further amplification by the second op-amp on the chip, achieving a digital output (maximum or minimum voltage). This output is then directed to the microcontroller. Although the output appears to possess an evenly distributed combination of ones and zeros, it undergoes debiasing within the microcontroller for added safety.
Construction
Unless there is specific interest, I wonāt delve into intricate details here since the instructions are quite clear (for instance, youāll notice R4 marked as a 100k ohm resistor, so youād place it in the spot designated R4 and solder it). However, I can offer some general guidance. If you require fundamental soldering information, there are numerous excellent tutorials available online.
Regarding the surface mount parts, Iāve found an effective method is to apply a small amount of solder to one of the pads, hold the component in place with tweezers, heat the pin so that the solder on the pad adheres to it, and then adjust the componentās orientation as needed while applying heat. Subsequently, you can easily solder the remaining pads. In the realm of surface mount components, these parts are relatively straightforward to handle.
I believe the most effective soldering sequence is to begin with the smallest components and progress to the larger ones. Commence with the ZRE1004 and MMBT3904, followed by the capacitors, then the resistors, and lastly, the larger components. Thereās a notable clearance concern with C3, so ensure to trim its leads short before attaching the battery holder to prevent unwanted contact. Itās crucial to solder C3 and C4 before the battery holder; the reverse sequence isnāt feasible.
For components like the display, microcontroller, and op-amp, soldering in the wrong orientation poses a risk due to the absence of sockets. Itās crucial to align pin one with the hole featuring the square pad, near the end where the silkscreen exhibits a notch. Double-check before soldering to avoid errors. Additionally, the through-hole switch must be inserted as far as possible to prevent it from being depressed by the caseās button pad without actual button activation. Sometimes, straightening the switchās leads before PCB insertion aids in achieving a secure fit.
Once soldering is complete, youāll need to create two holes in the caseāone for the thumb wheel and another for the display. These instructions might seem unclear until you have the case in hand and observe how components fit within it. I recommend using a sharp pocket knife and a punch-and-die type nibbler to craft the holes. Firstly, cut the hole for the thumb wheel at the top part of the case, guided by the alignment of the PCBās notches with the PCB support posts/screw holes. Then, create a hole for the display using the knife and use the nibbler to form an appropriately sized hole. Ensure a snug fit by cutting gradually and checking the fit repeatedly.
Inside the caseās top section, there are two posts for the buttonsā support to connect to. Remove the top post positioned near the displayās corner, while trimming the buttonās support to fit the other postās connector. Additionally, the PCB support posts on the caseās top half may require minor trimming for a perfect fit, and there might be residual manufacturing nubs inside the case that need removal. An update: I typically use a CNC mill for case openings now, and if you have access to one, itās highly recommended for this purpose.