<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments for Tutorial45	</title>
	<atom:link href="https://tutorial45.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>https://tutorial45.com/</link>
	<description>Tutorials and Tech</description>
	<lastBuildDate>Sun, 02 Aug 2020 14:16:23 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		Comment on Arduino Projects: Arduino Decibel Meter by Mattx38		</title>
		<link>https://tutorial45.com/arduino-projects-arduino-decibel-meter/comment-page-1/#comment-778</link>

		<dc:creator><![CDATA[Mattx38]]></dc:creator>
		<pubDate>Sun, 16 Dec 2018 20:03:00 +0000</pubDate>
		<guid isPermaLink="false">http://tutorial45.com/?p=6006#comment-778</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://tutorial45.com/arduino-projects-arduino-decibel-meter/comment-page-1/#comment-775&quot;&gt;Mattx38&lt;/a&gt;.

Hello, 

I didn&#039;t manage to dot it whith a WS2812B RGB led strip.

The strip keeps lighted.

I used the following code : 

#include 
#define NUM_LEDS 3
#define LED_PIN 4
#define COLOR_ORDER GRB
#define LED_TYPE    WS2812B
#define BRIGHTNESS  30
#define MIC 0

CRGB leds[NUM_LEDS];

void setup() {
FastLED.addLeds(leds, NUM_LEDS);
FastLED.setBrightness(  BRIGHTNESS );
Serial.begin(9600);

//here is an input for sound sensor
pinMode(MIC, INPUT);

//here we are setting up all pins as an outputs for LEDs
for(int z = 0; z &#060; 10; z++){
pinMode(z, OUTPUT);
}
}

void loop() {

//here we are storing the volume value
int volume = analogRead(A0);
Serial.println (volume);

//max value for analog read is 1023 but it must be very very loud to reach this value
//so I lower it down in map function to 700
//mapping volume value to make it easier to turn LEDs on
volume = map(volume, 0, 700, 0, 10);

//for loop to turn on or off all LEDs
//thanks to this loop code for this project is very short
//we are going through all pins where we have LEDs and checking if the volume is
//bigger then pin number (that&#039;s why we are maping the volume)
for(int a = 0; a = a)
{
//if it is bigger we can turn on the LED
leds[a]= CRGB::Green;
FastLED.show();
}

else{
//if it is smaller we can turn the LED off
leds[a]= CRGB::Black;
FastLED.show();
}
}
}

Cann you help me ??

Thank you]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://tutorial45.com/arduino-projects-arduino-decibel-meter/comment-page-1/#comment-775">Mattx38</a>.</p>
<p>Hello, </p>
<p>I didn&#8217;t manage to dot it whith a WS2812B RGB led strip.</p>
<p>The strip keeps lighted.</p>
<p>I used the following code : </p>
<p>#include<br />
#define NUM_LEDS 3<br />
#define LED_PIN 4<br />
#define COLOR_ORDER GRB<br />
#define LED_TYPE    WS2812B<br />
#define BRIGHTNESS  30<br />
#define MIC 0</p>
<p>CRGB leds[NUM_LEDS];</p>
<p>void setup() {<br />
FastLED.addLeds(leds, NUM_LEDS);<br />
FastLED.setBrightness(  BRIGHTNESS );<br />
Serial.begin(9600);</p>
<p>//here is an input for sound sensor<br />
pinMode(MIC, INPUT);</p>
<p>//here we are setting up all pins as an outputs for LEDs<br />
for(int z = 0; z &lt; 10; z++){<br />
pinMode(z, OUTPUT);<br />
}<br />
}</p>
<p>void loop() {</p>
<p>//here we are storing the volume value<br />
int volume = analogRead(A0);<br />
Serial.println (volume);</p>
<p>//max value for analog read is 1023 but it must be very very loud to reach this value<br />
//so I lower it down in map function to 700<br />
//mapping volume value to make it easier to turn LEDs on<br />
volume = map(volume, 0, 700, 0, 10);</p>
<p>//for loop to turn on or off all LEDs<br />
//thanks to this loop code for this project is very short<br />
//we are going through all pins where we have LEDs and checking if the volume is<br />
//bigger then pin number (that&#039;s why we are maping the volume)<br />
for(int a = 0; a = a)<br />
{<br />
//if it is bigger we can turn on the LED<br />
leds[a]= CRGB::Green;<br />
FastLED.show();<br />
}</p>
<p>else{<br />
//if it is smaller we can turn the LED off<br />
leds[a]= CRGB::Black;<br />
FastLED.show();<br />
}<br />
}<br />
}</p>
<p>Cann you help me ??</p>
<p>Thank you</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Arduino Projects: Arduino Decibel Meter by Mattx38		</title>
		<link>https://tutorial45.com/arduino-projects-arduino-decibel-meter/comment-page-1/#comment-775</link>

		<dc:creator><![CDATA[Mattx38]]></dc:creator>
		<pubDate>Wed, 05 Dec 2018 06:53:00 +0000</pubDate>
		<guid isPermaLink="false">http://tutorial45.com/?p=6006#comment-775</guid>

					<description><![CDATA[Hello,
Great project !
I’m new to Arduino coding and I’m trying to understand to make a similar project. 
How could I adapt your code to display the amount of décibels on a WS2812B led strip ?
It is for my wife’s classroom. 
Thank you]]></description>
			<content:encoded><![CDATA[<p>Hello,<br />
Great project !<br />
I’m new to Arduino coding and I’m trying to understand to make a similar project.<br />
How could I adapt your code to display the amount of décibels on a WS2812B led strip ?<br />
It is for my wife’s classroom.<br />
Thank you</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Arduino Bluetooth RC Car Project by Krishank Gupta		</title>
		<link>https://tutorial45.com/arduino-bluetooth-rc-car-project/comment-page-1/#comment-773</link>

		<dc:creator><![CDATA[Krishank Gupta]]></dc:creator>
		<pubDate>Mon, 26 Nov 2018 10:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://tutorial45.com/?p=6228#comment-773</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://tutorial45.com/arduino-bluetooth-rc-car-project/comment-page-1/#comment-772&quot;&gt;Aris&lt;/a&gt;.

thank you!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://tutorial45.com/arduino-bluetooth-rc-car-project/comment-page-1/#comment-772">Aris</a>.</p>
<p>thank you!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Arduino Bluetooth RC Car Project by Aris		</title>
		<link>https://tutorial45.com/arduino-bluetooth-rc-car-project/comment-page-1/#comment-772</link>

		<dc:creator><![CDATA[Aris]]></dc:creator>
		<pubDate>Sun, 25 Nov 2018 20:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://tutorial45.com/?p=6228#comment-772</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://tutorial45.com/arduino-bluetooth-rc-car-project/comment-page-1/#comment-768&quot;&gt;Krishank Gupta&lt;/a&gt;.

Here is how you do it: https://playground.arduino.cc/Learning/9VBatteryAdapter]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://tutorial45.com/arduino-bluetooth-rc-car-project/comment-page-1/#comment-768">Krishank Gupta</a>.</p>
<p>Here is how you do it: <a href="https://playground.arduino.cc/Learning/9VBatteryAdapter" rel="nofollow ugc">https://playground.arduino.cc/Learning/9VBatteryAdapter</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Arduino Bluetooth RC Car Project by Krishank Gupta		</title>
		<link>https://tutorial45.com/arduino-bluetooth-rc-car-project/comment-page-1/#comment-768</link>

		<dc:creator><![CDATA[Krishank Gupta]]></dc:creator>
		<pubDate>Sat, 17 Nov 2018 13:28:00 +0000</pubDate>
		<guid isPermaLink="false">http://tutorial45.com/?p=6228#comment-768</guid>

					<description><![CDATA[Thank you for your amazing tutorial. I am a bit confused about the schematic, where do I connect the batteries?]]></description>
			<content:encoded><![CDATA[<p>Thank you for your amazing tutorial. I am a bit confused about the schematic, where do I connect the batteries?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on AutoCAD Tutorial: AutoCAD Batch Plot by Treadly		</title>
		<link>https://tutorial45.com/autocad-batch-plot/comment-page-1/#comment-767</link>

		<dc:creator><![CDATA[Treadly]]></dc:creator>
		<pubDate>Tue, 13 Nov 2018 12:17:00 +0000</pubDate>
		<guid isPermaLink="false">http://tutorial45.com/?p=4135#comment-767</guid>

					<description><![CDATA[Before you start you should use the command &quot;PUBLISHALLSHEETS&quot; so that all the open drawings will load. Set it to 1.]]></description>
			<content:encoded><![CDATA[<p>Before you start you should use the command &#8220;PUBLISHALLSHEETS&#8221; so that all the open drawings will load. Set it to 1.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Arduino Projects: Arduino 7 Segment Display by A b c officials *		</title>
		<link>https://tutorial45.com/arduino-7-segment-display/comment-page-1/#comment-766</link>

		<dc:creator><![CDATA[A b c officials *]]></dc:creator>
		<pubDate>Mon, 12 Nov 2018 07:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://tutorial45.com/?p=6194#comment-766</guid>

					<description><![CDATA[Can we stop the counter ?? By button ??]]></description>
			<content:encoded><![CDATA[<p>Can we stop the counter ?? By button ??</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Arduino Count up Timer Using the Nokia 5110 LCD by Joe Daccache		</title>
		<link>https://tutorial45.com/arduino-count-up-timer-using-the-nokia/comment-page-1/#comment-763</link>

		<dc:creator><![CDATA[Joe Daccache]]></dc:creator>
		<pubDate>Wed, 31 Oct 2018 07:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://tutorial45.com/?p=6551#comment-763</guid>

					<description><![CDATA[are we able to get to 3 digits counter with this project and does it work for aa long period of count like a day or a period of 86400 min ?]]></description>
			<content:encoded><![CDATA[<p>are we able to get to 3 digits counter with this project and does it work for aa long period of count like a day or a period of 86400 min ?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on AutoCAD Tutorial 15: Working With Layers in AutoCAD by Infamous UK		</title>
		<link>https://tutorial45.com/autocad-tutorial-15-working-with-layers-in-autocad/comment-page-1/#comment-759</link>

		<dc:creator><![CDATA[Infamous UK]]></dc:creator>
		<pubDate>Sun, 21 Oct 2018 14:29:00 +0000</pubDate>
		<guid isPermaLink="false">http://tutorial45.com/?p=326#comment-759</guid>

					<description><![CDATA[how do i get the dimensions for the top slots]]></description>
			<content:encoded><![CDATA[<p>how do i get the dimensions for the top slots</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on AutoCAD Tutorial 15: Working With Layers in AutoCAD by Aris		</title>
		<link>https://tutorial45.com/autocad-tutorial-15-working-with-layers-in-autocad/comment-page-1/#comment-757</link>

		<dc:creator><![CDATA[Aris]]></dc:creator>
		<pubDate>Thu, 18 Oct 2018 21:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://tutorial45.com/?p=326#comment-757</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://tutorial45.com/autocad-tutorial-15-working-with-layers-in-autocad/comment-page-1/#comment-371&quot;&gt;Tom Smith&lt;/a&gt;.

In my opinion this is not yet possible.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://tutorial45.com/autocad-tutorial-15-working-with-layers-in-autocad/comment-page-1/#comment-371">Tom Smith</a>.</p>
<p>In my opinion this is not yet possible.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 

Served from: tutorial45.com @ 2026-05-15 15:00:10 by W3 Total Cache
-->