Components
Project #16: Sound – Frequency and Pitch – Mk03
——
#donluc #sound #synthesizer #programming #arduino #fritzing #electronics #microcontrollers #consultant #vlog
——
——
——
——
Frequency and Pitch
Frequency is how often something happens. Since sound is vibrations, we use frequency to describe how often something is vibrating. Frequency is measured in Hertz (Hz), which is simply how often per second. So, something oscillating at 1 Hz is vibrating once every second. A complete vibration is called a cycle, measured at one full peak and trough of a wave. In the early days of electronic music, the terms cycles per second (cps) was used instead of Hz.
The above picture is a sine wave, the purest representation of a single frequency or vibration. The time it takes for the wave to complete one cycle is the wave’s frequency. More vibrations per second produce higher sounding frequencies and fewer vibrations per second produce lower sounding frequencies. Tuning instruments, science experiments, testing audio equipment, testing your hearing what’s the highest frequency you can hear? Humans perceive frequency of sound waves as pitch. Each musical note corresponds to a particular frequency which can be measured in hertz. An infant’s ear is able to perceive frequencies ranging from 20 Hz to 20,000 Hz. The average adult human can hear sounds between 20 Hz and 16,000 Hz.
Tone
The Arduino is a single-oscillator digital synthesizer. Generates a square wave tone() of the specified frequency on a pin. The pin can be connected to a other speaker. Only one tone can be generated at a time. If the tone is playing on the same pin, the call will set its frequency. the Arduino pin on which to generate the tone. The frequency of the tone in hertz. The duration of the tone in milliseconds. By passing voltage through a potentiometer and into an analog input on your board, it is possible to measure the amount of resistance produced by a potentiometer as an frequency.
DL2010Mk02
1 x Arduino Pro Mini 328 – 5V/16MHz
1 x 1K Potentiometer
1 x Knob
1 x Audio Jack 3.5mm
1 x SparkFun Audio Jack Breakout
1 x Hamburger Mini Speaker
5 x Jumper Wires 3in M/M
2 x Jumper Wires 6in M/M
1 x Full-Size Breadboard
1 x SparkFun Cerberus USB Cable
1 x SparkFun FTDI Basic Breakout – 5V
Arduino Pro Mini 328 – 5V/16MHz
SPK – Digital 6
CAP – Analog A0
VIN – +5V
GND – GND
DL2010Mk02p.ino
// ***** Don Luc Electronics © ***** // Software Version Information // Project #16: Sound - Frequency and Pitch - Mk03 // 10-02 // DL2010Mk02p.ino 16-03 // 1 x Arduino Pro Mini 328 - 5V/16MHz // 1 x 1K Potentiometer // 1 x Knob // 1 x Audio Jack 3.5mm // 1 x SparkFun Audio Jack Breakout // 1 x Hamburger Mini Speaker // 5 x Jumper Wires 3in M/M // 2 x Jumper Wires 6in M/M // 1 x Full-Size Breadboard // 1 x SparkFun Cerberus USB Cable // 1 x SparkFun FTDI Basic Breakout - 5V // Include the Library Code // Mini Speaker int SPK = 6; // Frequency int iCap = A0; int iFreg = 0; // Software Version Information String sver = "16-03"; void loop() { // Frequency iFreg = analogRead(iCap); iFreg = map(iFreg, 0, 1023, 31, 4978); // Mini Speaker tone(SPK, iFreg, 20); // Delay the actual frequency of updates reads for stability delay(1); }
setup.ino
// Setup void setup() { // Setup }
Technology Experience
- Single-Board Microcontrollers (PIC, Arduino, Raspberry Pi,Espressif, etc…)
- Robotics
- Research & Development (R & D)
- Desktop Applications (Windows, OSX, Linux, Multi-OS, Multi-Tier, etc…)
- Mobile Applications (Android, iOS, Blackberry, Windows Mobile, Windows CE, etc…)
- Web Applications (LAMP, Scripting, Java, ASP, ASP.NET, RoR, Wakanda, etc…)
- Social Media Programming & Integration (Facebook, Twitter, YouTube, Pinterest, etc…)
- Content Management Systems (WordPress, Drupal, Joomla, Moodle, etc…)
- Bulletin Boards (phpBB, SMF, Vanilla, jobberBase, etc…)
- eCommerce (WooCommerce, OSCommerce, ZenCart, PayPal Shopping Cart, etc…)
Instructor
- Arduino
- Raspberry Pi
- Espressif
- Robotics
- DOS, Windows, OSX, Linux, iOS, Android, Multi-OS
- Linux-Apache-PHP-MySQL
Follow Us
J. Luc Paquin – Curriculum Vitae
https://www.donluc.com/DLHackster/LucPaquinCVEngMk2020a.pdf
Web: https://www.donluc.com/
Web: http://www.jlpconsultants.com/
Web: https://www.donluc.com/DLHackster/
Web: https://www.hackster.io/neosteam-labs
Facebook: https://www.facebook.com/neosteam.labs.9/
YouTube: https://www.youtube.com/channel/UC5eRjrGn1CqkkGfZy0jxEdA
Twitter: https://twitter.com/labs_steam
Pinterest: https://www.pinterest.com/NeoSteamLabs/
Instagram: https://www.instagram.com/luc.paquin/
Don Luc
Project #16: Sound – Brownian Noise – Mk02
——
#donluc #sound #programming #arduino #fritzing #electronics #microcontrollers #consultant #vlog
——
——
——
——
Brownian Noise
White noise has equal intensity at equal frequencies. This sounds tinny and harsh to humans. The problem is due to the high frequencies. In order to produce a more pleasant sound, we need to attenuate those high frequencies. This is called a “low pass filter”. Brownian noise is noise with a power density which decreases 6 dB per octave with increasing frequency and, when heard, has a “damped” or “soft” quality compared to white and pink noise.
In science is the kind of signal noise produced by Brownian motion, hence its alternative name of random walk noise. The graphic representation of the sound signal mimics a Brownian pattern. The sound is a low roar resembling a waterfall or heavy rainfall.
Brown Noise Sleep Machine
Brown noise can be produced by integrating white noise. That is, whereas white noise can be produced by randomly choosing each sample independently, Brown noise can be produced by adding a random offset to each sample to obtain the next one. Note that while the first sample is random across the entire range that the sound sample can take on, the remaining offsets from there on are a tenth or thereabouts, leaving room for the signal to bounce around.
This is a pretty common diode. It acts as a flyback, a protective measure to against voltage spikes caused by inductive loads, in this case the speaker. It is basically the same setup, except that an electrolytic decoupling capacitors has been added. I found that 33uF to be suitable. If the output sounds too tinny, which I think is unlikely, then increase the capacitance. As you increase the capacitance, the output volume will go down. So you might try experimenting with a lower capacitance and potentiometer.
DL2010Mk01
1 x Arduino Pro Mini 328 – 5V/16MHz
1 x 1K Potentiometer
1 x Knob
1 x Diode Small Signal – 1N4148
1 x Electrolytic Decoupling Capacitors – 33uF/63V
1 x Audio Jack 3.5mm
1 x SparkFun Audio Jack Breakout
1 x Hamburger Mini Speaker
9 x Jumper Wires 3in M/M
1 x Full-Size Breadboard
1 x SparkFun Cerberus USB Cable
1 x SparkFun FTDI Basic Breakout – 5V
Arduino Pro Mini 328 – 5V/16MHz
SPT – Digital 6
VIN – +5V
GND – GND
DL2010Mk01p.ino
// ***** Don Luc Electronics © ***** // Software Version Information // Project #16: Sound - Brownian Noise - Mk02 // 09-02 // DL2010Mk01p.ino 16-02 // 1 x Arduino Pro Mini 328 - 5V/16MHz // 1 x 1K Potentiometer // 1 x Knob // 1 x Diode Small Signal - 1N4148 // 1 x Electrolytic Decoupling Capacitors - 33uF/63V // 1 x Audio Jack 3.5mm // 1 x SparkFun Audio Jack Breakout // 1 x Hamburger Mini Speaker // 9 x Jumper Wires 3in M/M // 1 x Full-Size Breadboard // 1 x SparkFun Cerberus USB Cable // 1 x SparkFun FTDI Basic Breakout - 5V // Include the Library Code // Mini Speaker int SPK = 6; long randNumber; // Software Version Information String sver = "16-02"; void loop() { // Mini Speaker randNumber = random(); digitalWrite( SPK , randNumber ); // Delay the actual frequency of updates delayMicroseconds (50); }
setup.ino
// Setup void setup() { // Connect a speaker between ground pinMode(SPK, OUTPUT); // Random Seed randomSeed(analogRead( SPK )); }
Technology Experience
- Single-Board Microcontrollers (PIC, Arduino, Raspberry Pi,Espressif, etc…)
- Robotics
- Research & Development (R & D)
- Desktop Applications (Windows, OSX, Linux, Multi-OS, Multi-Tier, etc…)
- Mobile Applications (Android, iOS, Blackberry, Windows Mobile, Windows CE, etc…)
- Web Applications (LAMP, Scripting, Java, ASP, ASP.NET, RoR, Wakanda, etc…)
- Social Media Programming & Integration (Facebook, Twitter, YouTube, Pinterest, etc…)
- Content Management Systems (WordPress, Drupal, Joomla, Moodle, etc…)
- Bulletin Boards (phpBB, SMF, Vanilla, jobberBase, etc…)
- eCommerce (WooCommerce, OSCommerce, ZenCart, PayPal Shopping Cart, etc…)
Instructor
- Arduino
- Raspberry Pi
- Espressif
- Robotics
- DOS, Windows, OSX, Linux, iOS, Android, Multi-OS
- Linux-Apache-PHP-MySQL
Follow Us
J. Luc Paquin – Curriculum Vitae
https://www.donluc.com/DLHackster/LucPaquinCVEngMk2020a.pdf
Web: https://www.donluc.com/
Web: http://www.jlpconsultants.com/
Web: https://www.donluc.com/DLHackster/
Web: https://www.hackster.io/neosteam-labs
Facebook: https://www.facebook.com/neosteam.labs.9/
YouTube: https://www.youtube.com/channel/UC5eRjrGn1CqkkGfZy0jxEdA
Twitter: https://twitter.com/labs_steam
Pinterest: https://www.pinterest.com/NeoSteamLabs/
Instagram: https://www.instagram.com/luc.paquin/
Don Luc
Project #16: Sound – White Noise – Mk01
——
#donluc #sound #programming #arduino #fritzing #electronics #microcontrollers #consultant #vlog
——
——
——
——
White Noise
In signal processing, white noise is a random signal having equal intensity at different frequencies, giving it a constant power spectral density. In other words, the signal has equal power in any band of a given bandwidth when the bandwidth is measured in Hz. The term is used, with this or similar meanings, in many scientific and technical disciplines, including physics, acoustical engineering, telecommunications, and statistical forecasting. White noise refers to a statistical model for signals and signal sources, rather than to any specific signal.
White noise is commonly used in the production of electronic music, usually either directly or as an input for a filter to create other types of noise signal. A simple example of white noise is a nonexistent radio station (static). White noise is also used to obtain the impulse response of an electrical circuit, in particular of amplifiers and other audio equipment. Computing, white noise is used as the basis of some random number generators.
Sounds from all frequencies we can hear. Tends to sound high pitch and tinny. This tends to be the least pleasant noise.
Simple breakout board for the 3.5mm audio jack, TRS are abbreviations for Tip / Ring / Sleeve. A TRS is often though of as stereo, as the addition of the ring gives us two contacts allowing us a left and right audio channel.
DL2009Mk01
1 x Arduino Pro Mini 328 – 5V/16MHz
1 x Audio Jack 3.5mm
1 x SparkFun Audio Jack Breakout
1 x Hamburger Mini Speaker
3 x Jumper Wires 3in M/M
1 x Half-Size Breadboard
1 x SparkFun Cerberus USB Cable
1 x SparkFun FTDI Basic Breakout – 5V
Arduino Pro Mini 328 – 5V/16MHz
SPT – Digital 6
SPR – Digital 7
VIN – +5V
GND – GND
DL2009Mk01p.ino
// ***** Don Luc Electronics © ***** // Software Version Information // Project #16: Sound - White Noise - Mk01 // 09-01 // DL2009Mk01p.ino 16-01 // 1 x Arduino Pro Mini 328 - 5V/16MHz // 1 x Audio Jack 3.5mm // 1 x SparkFun Audio Jack Breakout // 1 x Hamburger Mini Speaker // 3 x Jumper Wires 3in M/M // 1 x Half-Size Breadboard // 1 x SparkFun Cerberus USB Cable // 1 x SparkFun FTDI Basic Breakout - 5V // Include the Library Code // Mini Speaker int Tip = 6; int Ring = 7; long randNumber; // Software Version Information String sver = "16-01"; void loop() { // Mini Speaker randNumber = random(); digitalWrite( Tip , randNumber ); randNumber = random(); digitalWrite( Ring , randNumber ); // Delay the actual frequency of updates delayMicroseconds (50); }
setup.ino
// Setup void setup() { // Connect a speaker between ground pinMode(Tip, OUTPUT); pinMode(Ring, OUTPUT); // Random Seed randomSeed(analogRead( Tip )); randomSeed(analogRead( Ring )); }
Technology Experience
- Single-Board Microcontrollers (Arduino, Raspberry Pi,Espressif, etc…)
- Robotics
- Research & Development (R & D)
- Desktop Applications (Windows, OSX, Linux, Multi-OS, Multi-Tier, etc…)
- Mobile Applications (Android, iOS, Blackberry, Windows Mobile, Windows CE, etc…)
- Web Applications (LAMP, Scripting, Java, ASP, ASP.NET, RoR, Wakanda, etc…)
- Social Media Programming & Integration (Facebook, Twitter, YouTube, Pinterest, etc…)
- Content Management Systems (WordPress, Drupal, Joomla, Moodle, etc…)
- Bulletin Boards (phpBB, SMF, Vanilla, jobberBase, etc…)
- eCommerce (WooCommerce, OSCommerce, ZenCart, PayPal Shopping Cart, etc…)
Instructor
- Arduino
- Raspberry Pi
- Espressif
- Robotics
- DOS, Windows, OSX, Linux, iOS, Android, Multi-OS
- Linux-Apache-PHP-MySQL
Follow Us
J. Luc Paquin – Curriculum Vitae
https://www.donluc.com/DLHackster/LucPaquinCVEngMk2020a.pdf
Web: https://www.donluc.com/
Web: http://www.jlpconsultants.com/
Web: https://www.donluc.com/DLHackster/
Web: https://www.hackster.io/neosteam-labs
Facebook: https://www.facebook.com/neosteam.labs.9/
YouTube: https://www.youtube.com/channel/UC5eRjrGn1CqkkGfZy0jxEdA
Twitter: https://twitter.com/labs_steam
Pinterest: https://www.pinterest.com/NeoSteamLabs/
Instagram: https://www.instagram.com/luc.paquin/
Don Luc
Project #14: Components – SparkFun Solderable Breadboard – Mk20
——
#DonLuc #Electronics #Components #SolderableBreadboard #Microcontrollers #Environment #SparkFun #Consultant #Vlog #Aphasia
——
——
——
SparkFun Solderable Breadboard
SparkFun Item: PRT-12070
This is the SparkFun Solderable Breadboard. A bare PCB that is the exact size as our regular breadboard with the same connections to pins and power rails. This board is especially useful for preserving a prototype or experiment you just created on a solderless breadboard by soldering all the pieces in place.
Technology Experience
- Single-Board Microcontrollers (Arduino, Raspberry Pi,Espressif, etc…)
- Robotics
- Research & Development (R & D)
- Desktop Applications (Windows, OSX, Linux, Multi-OS, Multi-Tier, etc…)
- Mobile Applications (Android, iOS, Blackberry, Windows Mobile, Windows CE, etc…)
- Web Applications (LAMP, Scripting, Java, ASP, ASP.NET, RoR, Wakanda, etc…)
- Social Media Programming & Integration (Facebook, Twitter, YouTube, Pinterest, etc…)
- Content Management Systems (WordPress, Drupal, Joomla, Moodle, etc…)
- Bulletin Boards (phpBB, SMF, Vanilla, jobberBase, etc…)
- eCommerce (WooCommerce, OSCommerce, ZenCart, PayPal Shopping Cart, etc…)
Instructor
- Arduino
- Raspberry Pi
- Espressif
- Robotics
- DOS, Windows, OSX, Linux, iOS, Android, Multi-OS
- Linux-Apache-PHP-MySQL
Follow Us
The Alpha Geek
Aphasia
https://www.donluc.com/?page_id=2149
J. Luc Paquin – Curriculum Vitae
https://www.donluc.com/DLHackster/LucPaquinCVEngMk2020a.pdf
Web: https://www.donluc.com/
Web: http://www.jlpconsultants.com/
Web: https://www.donluc.com/DLHackster/
Web: https://www.hackster.io/neosteam-labs
Facebook: https://www.facebook.com/neosteam.labs.9/
YouTube: https://www.youtube.com/channel/UC5eRjrGn1CqkkGfZy0jxEdA
Twitter: https://twitter.com/labs_steam
Pinterest: https://www.pinterest.com/NeoSteamLabs/
Instagram: https://www.instagram.com/luc.paquin/
Don Luc
Project #14: Components – EMF Meters – Mk19
——
#DonLuc #Electronics #Components #EMF #Microcontrollers #Environment #SparkFun #Consultant #Vlog #Aphasia
——
——
——
Telescopic Antenna SMA – 300 MHz to 1.1 GHz (ANT700)
SparkFun Item: WRL-13982
This ANT700 is a telescopic antenna designed for operation from 300 MHz to 1.1 GHz with a total length that is configurable from 9.5 cm to 24.5 cm. Each ANT700 is constructed of stainless steel and features an SMA male connector, rotating shaft, and adjustable elbow.
SMA Connector
SparkFun Item: WRL-00593
PCB edge mount – SMA RF connector. Perfect for prototyping with the GPS and Cellular devices that require an antenna connection. These connectors have a female signal pin and will correctly mate with the original SMA type antennas.
EMF Meter
An EMF meter is a scientific instrument for measuring electromagnetic fields. Most meters measure the electromagnetic radiation flux density or the change in an electromagnetic field over time, essentially the same as a radio antenna, but with quite different detection characteristics. Single axis meters are cheaper than tri-axis meters, but take longer to complete a survey because the meter only measures one dimension of the field. Single axis instruments have to be tilted and turned on all three axes to obtain a full measurement.
1 x Antenna SMA
1 x SMA Connector
1 x 3.3M Ohm
Technology Experience
- Research & Development (R & D)
- Desktop Applications (Windows, OSX, Linux, Multi-OS, Multi-Tier, etc…)
- Mobile Applications (Android, iOS, Blackberry, Windows Mobile, Windows CE, etc…)
- Web Applications (LAMP, Scripting, Java, ASP, ASP.NET, RoR, Wakanda, etc…)
- Social Media Programming & Integration (Facebook, Twitter, YouTube, Pinterest, etc…)
- Content Management Systems (WordPress, Drupal, Joomla, Moodle, etc…)
- Bulletin Boards (phpBB, SMF, Vanilla, jobberBase, etc…)
- eCommerce (WooCommerce, OSCommerce, ZenCart, PayPal Shopping Cart, etc…)
Instructor
- DOS, Windows, OSX, Linux, iOS, Android, Multi-OS
- Linux-Apache-PHP-MySQL
- Robotics
- Arduino
- Raspberry Pi
- Espressif
Follow Us
The Alpha Geek
Aphasia
https://www.donluc.com/?page_id=2149
J. Luc Paquin – Curriculum Vitae
https://www.donluc.com/DLHackster/LucPaquinCVEngMk2020a.pdf
Web: https://www.donluc.com/
Web: http://www.jlpconsultants.com/
Web: https://www.donluc.com/DLHackster/
Web: https://www.hackster.io/neosteam-labs
Facebook: https://www.facebook.com/neosteam.labs.9/
YouTube: https://www.youtube.com/channel/UC5eRjrGn1CqkkGfZy0jxEdA
Twitter: https://twitter.com/labs_steam
Pinterest: https://www.pinterest.com/NeoSteamLabs/
Instagram: https://www.instagram.com/luc.paquin/
Don Luc
Project #14: Components – SparkFun Alcohol Gas Sensor – MQ-3 – Mk18
——
#DonLuc #Electronics #Components #MQ3 #Microcontrollers #Environment #SparkFun #Consultant #Vlog #Aphasia
——
——
——
SparkFun Alcohol Gas Sensor – MQ-3
SparkFun Item: SEN-08880
This alcohol sensor is suitable for detecting alcohol concentration on your breath, just like your common breathalyzer. It has a high sensitivity and fast response time. Sensor provides an analog resistive output based on alcohol concentration. The drive circuit is very simple, all it needs is one resistor. A simple interface could be a 0-5V ADC. This sensor has a high sensitivity and fast response time. The sensor’s output is an analog resistance. The drive circuit is very simple; all you need to do is power the heater coil with 5V, add a load resistance, and connect the output to an ADC. This semiconductor gas sensor detects the presence of alcohol gas at concentrations from 0.04 mg/L to 4 mg/L, a range suitable for making a breathalyser. The sensor’s simple analog voltage interface requires only one analog input pin from your microcontroller.
To calculate estimated peak blood alcohol concentration (EBAC), a variation, including drinking period in hours, of the Widmark formula was used. The formula is:
EBAC = ( 0.806 × SD × 1.2 BW × Wt \ MR × DP ) × 10
Where:
-0.806 is a constant for body water in the blood (mean 80.6%)
-SD is the number of standard drinks, that being 10 grams of ethanol each
-1.2 is a factor to convert the amount in grams
-BW is a body water constant (0.58 for males and 0.49 for females)
-Wt is body weight (kilogram)
-MR is the metabolism constant (0.015 for males and 0.017 for females)
-DP is the drinking period in hours
-10 converts the result to permillage of alcohol
BAC% = Breath mg/L * 0.21
1 x SparkFun Alcohol Gas Sensor – MQ-3
1 x Pololu Carrier for MQ Gas Sensors
3 x Break Away Headers – Straight
1 x 220k Ohm
Technology Experience
- Research & Development (R & D)
- Desktop Applications (Windows, OSX, Linux, Multi-OS, Multi-Tier, etc…)
- Mobile Applications (Android, iOS, Blackberry, Windows Mobile, Windows CE, etc…)
- Web Applications (LAMP, Scripting, Java, ASP, ASP.NET, RoR, Wakanda, etc…)
- Social Media Programming & Integration (Facebook, Twitter, YouTube, Pinterest, etc…)
- Content Management Systems (WordPress, Drupal, Joomla, Moodle, etc…)
- Bulletin Boards (phpBB, SMF, Vanilla, jobberBase, etc…)
- eCommerce (WooCommerce, OSCommerce, ZenCart, PayPal Shopping Cart, etc…)
Instructor
- DOS, Windows, OSX, Linux, iOS, Android, Multi-OS
- Linux-Apache-PHP-MySQL
- Robotics
- Arduino
- Raspberry Pi
- Espressif
Follow Us
The Alpha Geek
Aphasia
https://www.donluc.com/?page_id=2149
J. Luc Paquin – Curriculum Vitae
https://www.donluc.com/DLHackster/LucPaquinCVEngMk2020a.pdf
Web: https://www.donluc.com/
Web: http://www.jlpconsultants.com/
Web: https://www.donluc.com/DLHackster/
Web: https://www.hackster.io/neosteam-labs
Facebook: https://www.facebook.com/neosteam.labs.9/
YouTube: https://www.youtube.com/channel/UC5eRjrGn1CqkkGfZy0jxEdA
Twitter: https://twitter.com/labs_steam
Pinterest: https://www.pinterest.com/NeoSteamLabs/
Don Luc
Project #14: Components – SparkFun Carbon Monoxide Gas Sensor – MQ-7 – Mk17
——
#DonLuc #Electronics #Components #MQ-7 #Microcontrollers #Environment #SparkFun #Pololu #Consultant #Vlog #Aphasia
——
——
——
SparkFun Carbon Monoxide Gas Sensor – MQ-7
SparkFun Item: SEN-09403
This is a simple-to-use Carbon Monoxide (CO) sensor, suitable for sensing CO concentrations in the air. The MQ-7 can detect CO-gas concentrations anywhere from 10 to 500ppm. This sensor has a high sensitivity and fast response time. The sensor’s output is an analog resistance. The drive circuit is very simple; all you need to do is power the heater coil with 5V, add a load resistance, and connect the output to an ADC.
1 x SparkFun Carbon Monoxide Gas Sensor – MQ-7
1 x Pololu Carrier for MQ Gas Sensors
3 x Break Away Headers – Straight
1 x 10k Ohm
Technology Experience
- Research & Development (R & D)
- Desktop Applications (Windows, OSX, Linux, Multi-OS, Multi-Tier, etc…)
- Mobile Applications (Android, iOS, Blackberry, Windows Mobile, Windows CE, etc…)
- Web Applications (LAMP, Scripting, Java, ASP, ASP.NET, RoR, Wakanda, etc…)
- Social Media Programming & Integration (Facebook, Twitter, YouTube, Pinterest, etc…)
- Content Management Systems (WordPress, Drupal, Joomla, Moodle, etc…)
- Bulletin Boards (phpBB, SMF, Vanilla, jobberBase, etc…)
- eCommerce (WooCommerce, OSCommerce, ZenCart, PayPal Shopping Cart, etc…)
Instructor
- DOS, Windows, OSX, Linux, iOS, Android, Multi-OS
- Linux-Apache-PHP-MySQL
- Robotics
- Arduino
- Raspberry Pi
- Espressif
Follow Us
The Alpha Geek
Aphasia
https://www.donluc.com/?page_id=2149
J. Luc Paquin – Curriculum Vitae
https://www.donluc.com/DLHackster/LucPaquinCVEngMk2020a.pdf
Web: https://www.donluc.com/
Web: http://www.jlpconsultants.com/
Web: https://www.donluc.com/DLHackster/
Web: https://www.hackster.io/neosteam-labs
Facebook: https://www.facebook.com/neosteam.labs.9/
YouTube: https://www.youtube.com/channel/UC5eRjrGn1CqkkGfZy0jxEdA
Twitter: https://twitter.com/labs_steam
Pinterest: https://www.pinterest.com/NeoSteamLabs/
Don Luc
Project #14: Components – Pololu Carbon Monoxide & Flammable Gas Sensor – MQ-9 – Mk16
——
#DonLuc #Electronics #Components #MQ-9 #Microcontrollers #Environment #Pololu #Consultant #Vlog #Aphasia
——
——
——
Pololu Carbon Monoxide & Flammable Gas Sensor – MQ-9
Pololu Item: 1483
This semiconductor gas sensor detects the presence of Carbon Monoxide at concentrations from 10 to 1,000 ppm and combustible gas from 100 to 10,000 ppm. The sensor’s simple analog voltage interface requires only one analog input pin from your microcontroller. This Carbon Monoxide (CO) and flammable gas sensor detects the concentrations of CO and combustible gas in the air and ouputs its reading as an analog voltage. The sensor can measure concentrations of CO from 10 to 1,000 ppm and flammable gas, high sensitivity to Methane, Propane and CO, from 100 to 10,000 ppm. The sensor can operate at temperatures from -10 to 50°C and consumes less than 150 mA at 5 V.
1 x Pololu Carbon Monoxide & Flammable Gas Sensor – MQ-9
1 x Pololu Carrier for MQ Gas Sensors
3 x Break Away Headers – Straight
1 x 20k Ohm
Technology Experience
- Research & Development (R & D)
- Desktop Applications (Windows, OSX, Linux, Multi-OS, Multi-Tier, etc…)
- Mobile Applications (Android, iOS, Blackberry, Windows Mobile, Windows CE, etc…)
- Web Applications (LAMP, Scripting, Java, ASP, ASP.NET, RoR, Wakanda, etc…)
- Social Media Programming & Integration (Facebook, Twitter, YouTube, Pinterest, etc…)
- Content Management Systems (WordPress, Drupal, Joomla, Moodle, etc…)
- Bulletin Boards (phpBB, SMF, Vanilla, jobberBase, etc…)
- eCommerce (WooCommerce, OSCommerce, ZenCart, PayPal Shopping Cart, etc…)
Instructor
- DOS, Windows, OSX, Linux, iOS, Android, Multi-OS
- Linux-Apache-PHP-MySQL
- Robotics
- Arduino
- Raspberry Pi
- Espressif
Follow Us
The Alpha Geek
Aphasia
https://www.donluc.com/?page_id=2149
J. Luc Paquin – Curriculum Vitae
https://www.donluc.com/DLHackster/LucPaquinCVEngMk2020a.pdf
Web: https://www.donluc.com/
Web: http://www.jlpconsultants.com/
Web: https://www.donluc.com/DLHackster/
Web: https://www.hackster.io/neosteam-labs
Facebook: https://www.facebook.com/neosteam.labs.9/
YouTube: https://www.youtube.com/channel/UC5eRjrGn1CqkkGfZy0jxEdA
Twitter: https://twitter.com/labs_steam
Pinterest: https://www.pinterest.com/NeoSteamLabs/
Don Luc
Project #14: Components – SparkFun Hydrogen Gas Sensor – MQ-8 – Mk15
——
#DonLuc #Electronics #Components #MQ-8 #Microcontrollers #Environment #SparkFun #Pololu #Consultant #Vlog #Aphasia
——
——
——
——
SparkFun Hydrogen Gas Sensor – MQ-8
SparkFun Item: SEN-10916
This is a simple-to-use hydrogen gas sensor, suitable for sensing hydrogen concentrations in the air. The MQ-8 can detect hydrogen gas concentrations anywhere from 100-10000ppm. This sensor has a high sensitivity and fast response time. The sensor’s output is an analog resistance. The drive circuit is very simple; all you need to do is power the heater coil with 5V, add a load resistance, and connect the output to an ADC.
1 x SparkFun Hydrogen Gas Sensor – MQ-8
1 x Pololu Carrier for MQ Gas Sensors
3 x Break Away Headers – Straight
1 x 4.7K Ohm
Technology Experience
- Research & Development (R & D)
- Desktop Applications (Windows, OSX, Linux, Multi-OS, Multi-Tier, etc…)
- Mobile Applications (Android, iOS, Blackberry, Windows Mobile, Windows CE, etc…)
- Web Applications (LAMP, Scripting, Java, ASP, ASP.NET, RoR, Wakanda, etc…)
- Social Media Programming & Integration (Facebook, Twitter, YouTube, Pinterest, etc…)
- Content Management Systems (WordPress, Drupal, Joomla, Moodle, etc…)
- Bulletin Boards (phpBB, SMF, Vanilla, jobberBase, etc…)
- eCommerce (WooCommerce, OSCommerce, ZenCart, PayPal Shopping Cart, etc…)
Instructor
- DOS, Windows, OSX, Linux, iOS, Android, Multi-OS
- Linux-Apache-PHP-MySQL
- Robotics
- Arduino
- Raspberry Pi
- Espressif
Follow Us
The Alpha Geek
Aphasia
https://www.donluc.com/?page_id=2149
J. Luc Paquin – Curriculum Vitae
https://www.donluc.com/DLHackster/LucPaquinCVEngMk2020a.pdf
Web: https://www.donluc.com/
Web: http://www.jlpconsultants.com/
Web: https://www.donluc.com/DLHackster/
Web: https://www.hackster.io/neosteam-labs
Facebook: https://www.facebook.com/neosteam.labs.9/
YouTube: https://www.youtube.com/channel/UC5eRjrGn1CqkkGfZy0jxEdA
Twitter: https://twitter.com/labs_steam
Pinterest: https://www.pinterest.com/NeoSteamLabs/
Don Luc
Project #14: Components – Pololu Carrier for MQ Gas Sensors – Mk14
——
#DonLuc #Electronics #Components #MQGasSensors #Microcontrollers #Environment #Pololu #Consultant #Vlog #Aphasia
——
——
——
Pololu Carrier for MQ Gas Sensors (Bare PCB Only)
Pololu Item: 1479
This carrier board is designed to work with any of the MQ-series gas sensors, simplifying the interface from 6 to 3 pins—ground, power and analog voltage output—that are broken out with a 0.1″ spacing, making the board compatible with 0.1″ headers and standard breadboards and perfboards. This board has two mounting holes and provides convenient pads for mounting the gas sensor’s required sensitivity-setting resistor.
Technology Experience
- Research & Development (R & D)
- Desktop Applications (Windows, OSX, Linux, Multi-OS, Multi-Tier, etc…)
- Mobile Applications (Android, iOS, Blackberry, Windows Mobile, Windows CE, etc…)
- Web Applications (LAMP, Scripting, Java, ASP, ASP.NET, RoR, Wakanda, etc…)
- Social Media Programming & Integration (Facebook, Twitter, YouTube, Pinterest, etc…)
- Content Management Systems (WordPress, Drupal, Joomla, Moodle, etc…)
- Bulletin Boards (phpBB, SMF, Vanilla, jobberBase, etc…)
- eCommerce (WooCommerce, OSCommerce, ZenCart, PayPal Shopping Cart, etc…)
Instructor
- DOS, Windows, OSX, Linux, iOS, Android, Multi-OS
- Linux-Apache-PHP-MySQL
- Robotics
- Arduino
- Raspberry Pi
- Espressif
Follow Us
The Alpha Geek
Aphasia
https://www.donluc.com/?page_id=2149
J. Luc Paquin – Curriculum Vitae
https://www.donluc.com/DLHackster/LucPaquinCVEngMk2020a.pdf
Web: https://www.donluc.com/
Web: http://www.jlpconsultants.com/
Web: https://www.donluc.com/DLHackster/
Web: https://www.hackster.io/neosteam-labs
Facebook: https://www.facebook.com/neosteam.labs.9/
YouTube: https://www.youtube.com/channel/UC5eRjrGn1CqkkGfZy0jxEdA
Twitter: https://twitter.com/labs_steam
Pinterest: https://www.pinterest.com/NeoSteamLabs/
Don Luc