<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://www.synology-forum.de/wiki/index.php?action=history&amp;feed=atom&amp;title=Archiv%3ADiskStation_211_automatisch_einschalten</id>
	<title>Archiv:DiskStation 211 automatisch einschalten - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://www.synology-forum.de/wiki/index.php?action=history&amp;feed=atom&amp;title=Archiv%3ADiskStation_211_automatisch_einschalten"/>
	<link rel="alternate" type="text/html" href="https://www.synology-forum.de/wiki/index.php?title=Archiv:DiskStation_211_automatisch_einschalten&amp;action=history"/>
	<updated>2026-05-07T09:29:44Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in Synology Wiki</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://www.synology-forum.de/wiki/index.php?title=Archiv:DiskStation_211_automatisch_einschalten&amp;diff=10468&amp;oldid=prev</id>
		<title>Tommes: Tommes verschob die Seite DiskStation 211 automatisch einschalten nach Archiv:DiskStation 211 automatisch einschalten</title>
		<link rel="alternate" type="text/html" href="https://www.synology-forum.de/wiki/index.php?title=Archiv:DiskStation_211_automatisch_einschalten&amp;diff=10468&amp;oldid=prev"/>
		<updated>2025-03-14T17:11:32Z</updated>

		<summary type="html">&lt;p&gt;Tommes verschob die Seite &lt;a href=&quot;/wiki/DiskStation_211_automatisch_einschalten&quot; class=&quot;mw-redirect&quot; title=&quot;DiskStation 211 automatisch einschalten&quot;&gt;DiskStation 211 automatisch einschalten&lt;/a&gt; nach &lt;a href=&quot;/wiki/Archiv:DiskStation_211_automatisch_einschalten&quot; title=&quot;Archiv:DiskStation 211 automatisch einschalten&quot;&gt;Archiv:DiskStation 211 automatisch einschalten&lt;/a&gt;&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;de&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Nächstältere Version&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Version vom 14. März 2025, 17:11 Uhr&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;de&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(kein Unterschied)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Tommes</name></author>
	</entry>
	<entry>
		<id>https://www.synology-forum.de/wiki/index.php?title=Archiv:DiskStation_211_automatisch_einschalten&amp;diff=569&amp;oldid=prev</id>
		<title>imported&gt;Ds211user: Automatisches Einschalten der DS-211</title>
		<link rel="alternate" type="text/html" href="https://www.synology-forum.de/wiki/index.php?title=Archiv:DiskStation_211_automatisch_einschalten&amp;diff=569&amp;oldid=prev"/>
		<updated>2011-06-11T21:11:12Z</updated>

		<summary type="html">&lt;p&gt;Automatisches Einschalten der DS-211&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Problem: kein Automatisches Einschalten der DS-211 ==&lt;br /&gt;
Wie auch andere DiskStationen fährt auch diese nicht automatisch bei anlegen einer Spannung hoch. Die in den anderen Anleitungen beschriebene Methode mit einem Kondensator brachte keinen Erfolg.&lt;br /&gt;
&lt;br /&gt;
== Lösung: Zeitschalter mit ATtiny15 ==&lt;br /&gt;
Hier habe ich eine alte Schaltung recycelt:&lt;br /&gt;
&lt;br /&gt;
[[Datei:Wait_autoon.gif]]&lt;br /&gt;
&lt;br /&gt;
Zu sehen ist neben einem DC-DC Konverter (SIM2-1205S), dem Relais (7212-L 5V) und dem Mikrocontroller (ATtiny15) noch ein Widerstand (470Ohm), ein Transistor (BC547) und eine Schutzdiode für das Relais.&lt;br /&gt;
&lt;br /&gt;
== Programm für ATtiny15 ==&lt;br /&gt;
Für das Programm habe ich das &amp;quot;AVR Studio 4&amp;quot; genommen und in Assembler eine Routine geschrieben&lt;br /&gt;
die nach Einschalten etwas wartet und über den Port PB4 das Relais nach ca. 6 Sekunden einschaltet: &lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
.nolist&lt;br /&gt;
.include &amp;quot;tn15def.inc&amp;quot;&lt;br /&gt;
.list&lt;br /&gt;
&lt;br /&gt;
.def temp = r16&lt;br /&gt;
.def z1 = r19&lt;br /&gt;
.def z2 = r20&lt;br /&gt;
.def z3 = r21&lt;br /&gt;
.def ws = r22&lt;br /&gt;
&lt;br /&gt;
.org 0x0000&lt;br /&gt;
rjmp RESET&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
reset: ;Initialisierung&lt;br /&gt;
&lt;br /&gt;
ldi temp, 0b00011000 ; Port 3+4&lt;br /&gt;
out DDRB, temp ;als out definieren&lt;br /&gt;
&lt;br /&gt;
ldi temp, 0b00000000 ;Port 3+4 auf 0 setzen&lt;br /&gt;
out PORTB,temp ;alles 0&lt;br /&gt;
&lt;br /&gt;
main:&lt;br /&gt;
ldi ws,12 ;ca. 12Sec warten&lt;br /&gt;
rcall wait&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ldi temp, 0b00010000 ;Port 4 on, Relais anschalten&lt;br /&gt;
out PORTB,temp&lt;br /&gt;
&lt;br /&gt;
ldi ws,1 ;1Sec warten&lt;br /&gt;
rcall wait ;&lt;br /&gt;
&lt;br /&gt;
ldi temp, 0b00000000 ; Relais ausschalten&lt;br /&gt;
out PORTB,temp ;alles 0&lt;br /&gt;
&lt;br /&gt;
endloop:&lt;br /&gt;
nop&lt;br /&gt;
rjmp endloop&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
wait:&lt;br /&gt;
ldi z1,0&lt;br /&gt;
ldi z2,0&lt;br /&gt;
ldi z3,0&lt;br /&gt;
loop1:&lt;br /&gt;
inc z1&lt;br /&gt;
BRNE loop1&lt;br /&gt;
inc z2&lt;br /&gt;
BRNE loop1 ;256*256 Zyklen waten&lt;br /&gt;
&lt;br /&gt;
inc z3&lt;br /&gt;
cpi z3,6 ;6~1sec&lt;br /&gt;
&lt;br /&gt;
BRLO loop1&lt;br /&gt;
&lt;br /&gt;
dec ws ;Anzahl Sekunden&lt;br /&gt;
BRNE wait;&lt;br /&gt;
&lt;br /&gt;
ret&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Schaltungsanschluss ==&lt;br /&gt;
[[Datei:Testschaltung.jpg|zentriert|miniatur|600px|Hier sieht man die aufgebaute Testschaltung mit der DS211 verbunden. Dazu habe ich auf der rechten Seite die Versorgungsspannung von 12V abgegriffen und auf der linken Seite das Relais mit dem Powertaster verbunden.]]&lt;br /&gt;
&lt;br /&gt;
[[Datei:Unterbringung.jpg|zentriert|miniatur|600px|Unterbringung in der DS211, die Plantine wurde an der Unterseite mit Tape abgeklebt um Kurzschlüsse zu vermeiden]]&lt;br /&gt;
&lt;br /&gt;
== Hinweis ==&lt;br /&gt;
*Durch den Eingriff erlischt die Garantie. &lt;br /&gt;
*Nachbau auf eigene Gefahr.&lt;br /&gt;
&lt;br /&gt;
== Quelle ==&lt;br /&gt;
[http://www.a-d-k.de/20110611_215929-DS211%2Bautomatisch%2Beinschalten.htm www.a-d-k.de DS211 automatisch einschalten]&lt;/div&gt;</summary>
		<author><name>imported&gt;Ds211user</name></author>
	</entry>
</feed>