<?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 on: Arduino Pic Programmer	</title>
	<atom:link href="https://makerprojekte.de/en/arduino-pic-programmer/feed/" rel="self" type="application/rss+xml" />
	<link>https://makerprojekte.de/en/arduino-pic-programmer/</link>
	<description>A blog for makers</description>
	<lastBuildDate>Sun, 24 Nov 2019 12:03:23 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
	<item>
		<title>
		By: Muhammad Ismail Zahid (AP2MIZ)		</title>
		<link>https://makerprojekte.de/en/arduino-pic-programmer/#comment-224</link>

		<dc:creator><![CDATA[Muhammad Ismail Zahid (AP2MIZ)]]></dc:creator>
		<pubDate>Wed, 26 Dec 2018 18:19:22 +0000</pubDate>
		<guid isPermaLink="false">https://makerprojekte.de/arduino-pic-programmer/#comment-224</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://makerprojekte.de/en/arduino-pic-programmer/#comment-220&quot;&gt;Ralph&lt;/a&gt;.

Dear Ralph
                 First of all wish you and your family a merry christmas and HNY 2019.I am new to arduino, can you please help me that where to define these function in sketch and where to call these in loop function to produce the 12v for vpp, where to define the pin to which the base of the bc549 will be connected . I want to make one such programmer for me.

thanks in advance
regards.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://makerprojekte.de/en/arduino-pic-programmer/#comment-220">Ralph</a>.</p>
<p>Dear Ralph<br />
                 First of all wish you and your family a merry christmas and HNY 2019.I am new to arduino, can you please help me that where to define these function in sketch and where to call these in loop function to produce the 12v for vpp, where to define the pin to which the base of the bc549 will be connected . I want to make one such programmer for me.</p>
<p>thanks in advance<br />
regards.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Gregor		</title>
		<link>https://makerprojekte.de/en/arduino-pic-programmer/#comment-221</link>

		<dc:creator><![CDATA[Gregor]]></dc:creator>
		<pubDate>Tue, 20 Feb 2018 06:38:30 +0000</pubDate>
		<guid isPermaLink="false">https://makerprojekte.de/arduino-pic-programmer/#comment-221</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://makerprojekte.de/en/arduino-pic-programmer/#comment-220&quot;&gt;Ralph&lt;/a&gt;.

Great idea which simply did not occur to me when I designed the board. Thank you very much for sharing!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://makerprojekte.de/en/arduino-pic-programmer/#comment-220">Ralph</a>.</p>
<p>Great idea which simply did not occur to me when I designed the board. Thank you very much for sharing!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ralph		</title>
		<link>https://makerprojekte.de/en/arduino-pic-programmer/#comment-220</link>

		<dc:creator><![CDATA[Ralph]]></dc:creator>
		<pubDate>Mon, 19 Feb 2018 21:30:41 +0000</pubDate>
		<guid isPermaLink="false">https://makerprojekte.de/arduino-pic-programmer/#comment-220</guid>

					<description><![CDATA[In the first: please excuse my bad english, I&#039;m an old native speaking german (50++).

I&#039;ve made my own shield using ardpicprog ICSP compounding  with an ISP-Header for AVR-Programming and a very proprietary programmer for AT89S51/52, AT89S8253, AT89S4051.
So thanks a lot for the great work in ardpicprog, so I have a (very low cost) shield for 3 kinds of MCU family.
But there is one thind, that I don&#039;t understand:
Why are you using an expensive DC-DC Converter TME512 ? It is simple to create +12V using a PWM clock from Arduino together with a switched coil.

&lt;img src=&quot;https://makerprojekte.de/wp-content/uploads/2019/11/ScreenShot042-1.jpg&quot; alt=&quot;&quot; /&gt;


Function in Arduino sketch:

void pwm25k_init(void)
{
  TCCR1A= 0; TCCR1B= 0;
  TCNT1= 0;
  
  // Nichtinverter PWM Kanal A und B; Modus 10h: Phase korrekt
  TCCR1A= _BV(COM1A1) &#124; _BV(COM1B1) &#124; _BV(WGM11);

  // Prescaler= 1
  TCCR1B= _BV(WGM13) &#124; _BV(CS10);

  // Werte von 0 bis 320 werden vom PW interpretiert
  ICR1= 320;
}

void pwm25k_set(unsigned int value)
{
  OCR1A= value;
}

------------------------
// Code in setup()
// generate a 25 kHz clock output for step-up converter
pinMode(PIN_PWM25K, OUTPUT);
pwm25k_init();  
pwm25k_set(55);       // 25kHz using 220uF capacitor to buffer +12V                        

-----------------------
Nice greetings,
Ralph]]></description>
			<content:encoded><![CDATA[<p>In the first: please excuse my bad english, I&#8217;m an old native speaking german (50++).</p>
<p>I&#8217;ve made my own shield using ardpicprog ICSP compounding  with an ISP-Header for AVR-Programming and a very proprietary programmer for AT89S51/52, AT89S8253, AT89S4051.<br />
So thanks a lot for the great work in ardpicprog, so I have a (very low cost) shield for 3 kinds of MCU family.<br />
But there is one thind, that I don&#8217;t understand:<br />
Why are you using an expensive DC-DC Converter TME512 ? It is simple to create +12V using a PWM clock from Arduino together with a switched coil.</p>
<p><img src="https://makerprojekte.de/wp-content/uploads/2019/11/ScreenShot042-1.jpg" alt="" /></p>
<p>Function in Arduino sketch:</p>
<p>void pwm25k_init(void)<br />
{<br />
  TCCR1A= 0; TCCR1B= 0;<br />
  TCNT1= 0;</p>
<p>  // Nichtinverter PWM Kanal A und B; Modus 10h: Phase korrekt<br />
  TCCR1A= _BV(COM1A1) | _BV(COM1B1) | _BV(WGM11);</p>
<p>  // Prescaler= 1<br />
  TCCR1B= _BV(WGM13) | _BV(CS10);</p>
<p>  // Werte von 0 bis 320 werden vom PW interpretiert<br />
  ICR1= 320;<br />
}</p>
<p>void pwm25k_set(unsigned int value)<br />
{<br />
  OCR1A= value;<br />
}</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
// Code in setup()<br />
// generate a 25 kHz clock output for step-up converter<br />
pinMode(PIN_PWM25K, OUTPUT);<br />
pwm25k_init();<br />
pwm25k_set(55);       // 25kHz using 220uF capacitor to buffer +12V                        </p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Nice greetings,<br />
Ralph</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
