<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="pl-pl">
<link rel="self" type="application/atom+xml" href="https://forum.atnel.pl/feed.php?f=31&amp;t=1960&amp;mode" />

<title>ATNEL tech-forum</title>
<link href="https://forum.atnel.pl/index.php" />
<updated>2012-12-21T08:27:53+01:00</updated>

<author><name><![CDATA[ATNEL tech-forum]]></name></author>
<id>https://forum.atnel.pl/feed.php?f=31&amp;t=1960&amp;mode</id>
<entry>
<author><name><![CDATA[B7ackJoker]]></name></author>
<updated>2012-12-20T20:24:37+01:00</updated>
<published>2012-12-20T20:24:37+01:00</published>
<id>https://forum.atnel.pl/viewtopic.php?t=1960&amp;p=21734#p21734</id>
<link href="https://forum.atnel.pl/viewtopic.php?t=1960&amp;p=21734#p21734"/>
<title type="html"><![CDATA[Re: Prosty Mrugacz m88]]></title>

<content type="html" xml:base="https://forum.atnel.pl/viewtopic.php?t=1960&amp;p=21734#p21734"><![CDATA[
Dobra , nagram <img src="https://forum.atnel.pl/images/smilies/icon_e_biggrin.gif" alt=":D" title="Bardzo szczęśliwy" /><br /><br /><br /><div style="width: 583px; height: 471px; margin: 0 auto; padding-left: 26px; padding-top: 48px; background: url('https://www.atnel.pl/download/atnel_tv.png') no-repeat;"> <strong>iframe</strong> </div><br /><br /><br />^^^^^^^^^^^^^^^^^^<br />Tutaj macie filmik  <img src="https://forum.atnel.pl/images/smilies/icon_e_smile.gif" alt=":)" title="Szczęśliwy" />  <img src="https://forum.atnel.pl/images/smilies/icon_e_biggrin.gif" alt=":D" title="Bardzo szczęśliwy" />  <img src="https://forum.atnel.pl/images/smilies/icon_e_wink.gif" alt=";)" title="Puszcza oko" />  <img src="https://forum.atnel.pl/images/smilies/icon_twisted.gif" alt=":twisted:" title="Szalony" /><p>Statystyki: Napisane przez <a href="https://forum.atnel.pl/memberlist.php?mode=viewprofile&amp;u=625">B7ackJoker</a> — 20 gru 2012, o 20:24</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[B7ackJoker]]></name></author>
<updated>2012-12-21T08:27:53+01:00</updated>
<published>2012-12-20T19:35:59+01:00</published>
<id>https://forum.atnel.pl/viewtopic.php?t=1960&amp;p=21725#p21725</id>
<link href="https://forum.atnel.pl/viewtopic.php?t=1960&amp;p=21725#p21725"/>
<title type="html"><![CDATA[Prosty Mrugacz m88]]></title>

<content type="html" xml:base="https://forum.atnel.pl/viewtopic.php?t=1960&amp;p=21725#p21725"><![CDATA[
[syntax=c]/*<br /> * main.c<br /> *<br /> *  Created on: 19-12-2012<br /> *      Author: Kamil<br /> */<br />#include &lt;avr/io.h&gt;<br />#include &lt;util/delay.h&gt;<br /><br /><br />// definicje dla preprocesora<br />#define LED_PIN (1&lt;&lt;PB7)// definicja pinu do którego podłączona jest dioda<br />#define LED_ON PORTB &amp;= ~LED_PIN// makrodefinicja – załączenie diody<br />#define LED_OFF PORTB |= LED_PIN// makrodefinicja – wyłączenie diody<br />#define LED_TOG PORTB ^= LED_PIN// makrodefinicja – zmiana stanu diody<br /><br />// ********************************************************* 1-sza wersja<br />int main(void)<br />{<br />// ****** inicjalizacja *********<br />DDRB |= LED_PIN;// kierunek pinu PB7 – wyjściowy<br /><br />// ****** pętla główna programu  *********<br />while(1)<br />{<br />LED_ON;// zapal diodę.<br />_delay_ms(1000);// oczekiwanie 1 sekunda.<br />LED_OFF;// zgaś diodę.<br />_delay_ms(900);    // oczekiwanie 900 ms.<br />LED_ON;// zapal diodę.<br />_delay_ms(800);    // oczekiwanie 800 ms.<br />LED_OFF;// zgaś diodę.<br />_delay_ms(700);     // oczekiwanie 700 ms.<br />LED_ON;    // zapal diodę.<br />_delay_ms(600);    // oczekiwanie 600 ms.<br />LED_OFF;     // zgaś diodę.<br />_delay_ms(500);     // oczekiwanie 500 ms.<br />LED_ON;// zapal diodę.<br />_delay_ms(400);    // oczekiwanie 400 ms.<br />LED_OFF;// zgaś diodę.<br />_delay_ms(300);    // oczekiwanie 300 ms.<br />LED_ON;// zapal diodę.<br />_delay_ms(200);    // oczekiwanie 200 ms.<br />LED_OFF;// zgaś diodę.<br />_delay_ms(100);     // oczekiwanie 100ms.<br />LED_ON;             // zapal diodę.<br />_delay_ms(100);     // oczekiwanie 100 ms.<br />LED_OFF;            // zgas diodę.<br />_delay_ms(100);     // oczekiwanie 100 ms.<br />LED_ON;// zapal diodę.<br />_delay_ms(100);// oczekiwanie 100 ms.<br />LED_OFF;// zgas diodę.<br />_delay_ms(100);// oczekiwanie 100 ms.<br />LED_ON;    // zapal diodę.<br />_delay_ms(200);    // oczekiwanie 200 ms.<br />LED_OFF;// zgaś diodę.<br />_delay_ms(300);    // oczekiwanie 300 ms.<br />LED_ON;// zapal diodę.<br />_delay_ms(400);    // oczekiwanie 400 ms.<br />LED_OFF;// zgaś diodę.<br />_delay_ms(500);     // oczekiwanie 500 ms.<br />LED_ON;    // zapal diodę.<br />_delay_ms(600);    // oczekiwanie 600 ms.<br />LED_OFF;// zgaś diodę.<br />_delay_ms(700);     // oczekiwanie 700 ms.<br />LED_ON;// zapal diodę.<br />_delay_ms(800);    // oczekiwanie 800 ms.<br />LED_OFF;// zgaś diodę.<br />_delay_ms(900);    // oczekiwanie 900 ms.<br />LED_ON;// zapal diodę.<br />}<br />}<br /><br />[/syntax]<br /><br />Troszkę długie , ale za to jakie oryginalne <img src="https://forum.atnel.pl/images/smilies/icon_e_biggrin.gif" alt=":D" title="Bardzo szczęśliwy" /><br /><br /><br /><strong><span style="color: #FF0000">No dobra tym razem poprawie znaczniki , ale nastepnym razem czeka cie exterminacja <img src="https://forum.atnel.pl/images/smilies/icon_razz.gif" alt=":P" title="Pokazuje język" />   - SunRiver</span></strong><p>Statystyki: Napisane przez <a href="https://forum.atnel.pl/memberlist.php?mode=viewprofile&amp;u=625">B7ackJoker</a> — 20 gru 2012, o 19:35</p><hr />
]]></content>
</entry>
</feed>