So, hier sind nun auch die Links:

https://gitlab.com/LarsKlette/IGPLANER/blob/master/app/src/main/java/com/JustusFluegel/chat/MediaButtons.java (Wäre die Klasse, in der ich die onUserInteraction , die in folgendender Activity "ausgeführt" wird)

https://gitlab.com/LarsKlette/IGPLANER/blob/master/app/src/main/java/com/JustusFluegel/igplaner/XMPP.java

...zur Antwort

Ich meinte Run anstatt Tun

...zur Antwort

Bin auch auf die Antwort gespannt .....

...zur Antwort

Bin Jetzt auch kein Experte, würde aber mal versuchen von einem anderen gerät auf YouTube zuzugreifen. Wenn das auch nicht hilft, dann versuche mal den Router und Notebook oder Computer etc. neu zu starten. Vielleicht hilft's Ja. Ich Google mal Für dich .... :) 

...zur Antwort
Script funktioniert nicht?

mein script:

1

<?php

2

mysql_connect("localhost", "kühlschrank1","Wf8wVad5UMFtBGFD");

3

mysql_select_db("kühlschrank1");

4

$result = mysql_query("SELECT * FROM tbl_kuelschrank");

5

// PHPlot Example: Simple line graph

6

require_once 'phplot/phplot.php';

7

$data = array();

8

//mysql_connect("localhost", "Kühlschrank1", "Wf8wVad5UMFtBGFD");

9

//mysql_select_db("kühlschrank1");

10

//$querY = mysql_query("SELECT * FROM tbl_kühlschrank1");

11

//$x = 0;

12

//while($row = mysql_fetch_assoc($querry)){

13

//$data[] = array('',$x,$row['temparature']);

14

//x++;

15

16

//}

17

//$data = array(

18

//array('mittags', 190, 178);

19

//array('mittags', 190, 178);

20

//array('mittags', 190, 178);

21

//array('mittags', 10008, 178);

22

23

24

//);

25

$x = 0;

26

27

global $X;

28

while($row = mysql_fetch_assoc($result)){

29

$data[]  =       array('$x','mittag', $row['Kühlschrank1']);

30

}

31

32

33

//              array('0:00Uhr', 1800,   5,8,9,10), array('', 1810,   7), array('', 1820,  10),

34

//        array('1:00Uhr', 1830,  13), array('', 1840,  17), array('', 1850,  23),

35

//        array('2:00Uhr', 1860,  31), array('', 1870,  39), array('', 1880,  50),

36

//        array('3:00Uhr', 1890,  63), array('', 1900,  76), array('', 1910,  92),

37

//  array('4:00Uhr', 1920, 106), array('', 1930, 123), array('', 1940, 132),

38

//  array('5:00Uhr', 1950, 151), array('', 1960, 179), array('', 1970, 203),

39

//  array('6:00Uhr', 1980, 227), array('', 1990, 249), array('', 2000, 281,11,12,13),

40

41

$plot = new PHPlot(1800, 600);

42

$plot->SetImageBorderType('plain');

43

$plot->SetPlotType('lines');

44

$plot->SetDataType('data-data');

45

$plot->SetDataValues($data);

46

# Main plot title:

47

$plot->SetTitle('IAS Kuehlschrankdiagramm Zentrum NRW West');

48

$plot->SetXTitle('Tageszeit');

49

$plot->SetYTitle('Temperatur');

50

$plot->SetLegend(array('Kuelschrank1_Duesseldorf', 'Kuelschrank2_Duesseldorf','Kuelschrank1_Duisburg','Kuelschrank2_Duisburg'));

51

# Make sure Y axis starts at 0:

52

$plot->SetPlotAreaWorld(NULL, NULL, NULL, NULL);

53

$plot->DrawGraph();

54

55

56

?>

bilder unten(von phpmyadmin)

...zum Beitrag

Ich bin totaler noob?!?!?! wenn jemand mir ein script mit mysqli schreiben könnte, währe ich sehr dankbar!

...zur Antwort
Script funktioniert nicht?

mein script:

1

<?php

2

mysql_connect("localhost", "kühlschrank1","Wf8wVad5UMFtBGFD");

3

mysql_select_db("kühlschrank1");

4

$result = mysql_query("SELECT * FROM tbl_kuelschrank");

5

// PHPlot Example: Simple line graph

6

require_once 'phplot/phplot.php';

7

$data = array();

8

//mysql_connect("localhost", "Kühlschrank1", "Wf8wVad5UMFtBGFD");

9

//mysql_select_db("kühlschrank1");

10

//$querY = mysql_query("SELECT * FROM tbl_kühlschrank1");

11

//$x = 0;

12

//while($row = mysql_fetch_assoc($querry)){

13

//$data[] = array('',$x,$row['temparature']);

14

//x++;

15

16

//}

17

//$data = array(

18

//array('mittags', 190, 178);

19

//array('mittags', 190, 178);

20

//array('mittags', 190, 178);

21

//array('mittags', 10008, 178);

22

23

24

//);

25

$x = 0;

26

27

global $X;

28

while($row = mysql_fetch_assoc($result)){

29

$data[]  =       array('$x','mittag', $row['Kühlschrank1']);

30

}

31

32

33

//              array('0:00Uhr', 1800,   5,8,9,10), array('', 1810,   7), array('', 1820,  10),

34

//        array('1:00Uhr', 1830,  13), array('', 1840,  17), array('', 1850,  23),

35

//        array('2:00Uhr', 1860,  31), array('', 1870,  39), array('', 1880,  50),

36

//        array('3:00Uhr', 1890,  63), array('', 1900,  76), array('', 1910,  92),

37

//  array('4:00Uhr', 1920, 106), array('', 1930, 123), array('', 1940, 132),

38

//  array('5:00Uhr', 1950, 151), array('', 1960, 179), array('', 1970, 203),

39

//  array('6:00Uhr', 1980, 227), array('', 1990, 249), array('', 2000, 281,11,12,13),

40

41

$plot = new PHPlot(1800, 600);

42

$plot->SetImageBorderType('plain');

43

$plot->SetPlotType('lines');

44

$plot->SetDataType('data-data');

45

$plot->SetDataValues($data);

46

# Main plot title:

47

$plot->SetTitle('IAS Kuehlschrankdiagramm Zentrum NRW West');

48

$plot->SetXTitle('Tageszeit');

49

$plot->SetYTitle('Temperatur');

50

$plot->SetLegend(array('Kuelschrank1_Duesseldorf', 'Kuelschrank2_Duesseldorf','Kuelschrank1_Duisburg','Kuelschrank2_Duisburg'));

51

# Make sure Y axis starts at 0:

52

$plot->SetPlotAreaWorld(NULL, NULL, NULL, NULL);

53

$plot->DrawGraph();

54

55

56

?>

bilder unten(von phpmyadmin)

...zum Beitrag

http://pastebin.com/2SVfhJWV

...zur Antwort
Script funktioniert nicht?

mein script:

1

<?php

2

mysql_connect("localhost", "kühlschrank1","Wf8wVad5UMFtBGFD");

3

mysql_select_db("kühlschrank1");

4

$result = mysql_query("SELECT * FROM tbl_kuelschrank");

5

// PHPlot Example: Simple line graph

6

require_once 'phplot/phplot.php';

7

$data = array();

8

//mysql_connect("localhost", "Kühlschrank1", "Wf8wVad5UMFtBGFD");

9

//mysql_select_db("kühlschrank1");

10

//$querY = mysql_query("SELECT * FROM tbl_kühlschrank1");

11

//$x = 0;

12

//while($row = mysql_fetch_assoc($querry)){

13

//$data[] = array('',$x,$row['temparature']);

14

//x++;

15

16

//}

17

//$data = array(

18

//array('mittags', 190, 178);

19

//array('mittags', 190, 178);

20

//array('mittags', 190, 178);

21

//array('mittags', 10008, 178);

22

23

24

//);

25

$x = 0;

26

27

global $X;

28

while($row = mysql_fetch_assoc($result)){

29

$data[]  =       array('$x','mittag', $row['Kühlschrank1']);

30

}

31

32

33

//              array('0:00Uhr', 1800,   5,8,9,10), array('', 1810,   7), array('', 1820,  10),

34

//        array('1:00Uhr', 1830,  13), array('', 1840,  17), array('', 1850,  23),

35

//        array('2:00Uhr', 1860,  31), array('', 1870,  39), array('', 1880,  50),

36

//        array('3:00Uhr', 1890,  63), array('', 1900,  76), array('', 1910,  92),

37

//  array('4:00Uhr', 1920, 106), array('', 1930, 123), array('', 1940, 132),

38

//  array('5:00Uhr', 1950, 151), array('', 1960, 179), array('', 1970, 203),

39

//  array('6:00Uhr', 1980, 227), array('', 1990, 249), array('', 2000, 281,11,12,13),

40

41

$plot = new PHPlot(1800, 600);

42

$plot->SetImageBorderType('plain');

43

$plot->SetPlotType('lines');

44

$plot->SetDataType('data-data');

45

$plot->SetDataValues($data);

46

# Main plot title:

47

$plot->SetTitle('IAS Kuehlschrankdiagramm Zentrum NRW West');

48

$plot->SetXTitle('Tageszeit');

49

$plot->SetYTitle('Temperatur');

50

$plot->SetLegend(array('Kuelschrank1_Duesseldorf', 'Kuelschrank2_Duesseldorf','Kuelschrank1_Duisburg','Kuelschrank2_Duisburg'));

51

# Make sure Y axis starts at 0:

52

$plot->SetPlotAreaWorld(NULL, NULL, NULL, NULL);

53

$plot->DrawGraph();

54

55

56

?>

bilder unten(von phpmyadmin)

...zum Beitrag

hier der code

...zur Antwort
Script funktioniert nicht?

mein script:

1

<?php

2

mysql_connect("localhost", "kühlschrank1","Wf8wVad5UMFtBGFD");

3

mysql_select_db("kühlschrank1");

4

$result = mysql_query("SELECT * FROM tbl_kuelschrank");

5

// PHPlot Example: Simple line graph

6

require_once 'phplot/phplot.php';

7

$data = array();

8

//mysql_connect("localhost", "Kühlschrank1", "Wf8wVad5UMFtBGFD");

9

//mysql_select_db("kühlschrank1");

10

//$querY = mysql_query("SELECT * FROM tbl_kühlschrank1");

11

//$x = 0;

12

//while($row = mysql_fetch_assoc($querry)){

13

//$data[] = array('',$x,$row['temparature']);

14

//x++;

15

16

//}

17

//$data = array(

18

//array('mittags', 190, 178);

19

//array('mittags', 190, 178);

20

//array('mittags', 190, 178);

21

//array('mittags', 10008, 178);

22

23

24

//);

25

$x = 0;

26

27

global $X;

28

while($row = mysql_fetch_assoc($result)){

29

$data[]  =       array('$x','mittag', $row['Kühlschrank1']);

30

}

31

32

33

//              array('0:00Uhr', 1800,   5,8,9,10), array('', 1810,   7), array('', 1820,  10),

34

//        array('1:00Uhr', 1830,  13), array('', 1840,  17), array('', 1850,  23),

35

//        array('2:00Uhr', 1860,  31), array('', 1870,  39), array('', 1880,  50),

36

//        array('3:00Uhr', 1890,  63), array('', 1900,  76), array('', 1910,  92),

37

//  array('4:00Uhr', 1920, 106), array('', 1930, 123), array('', 1940, 132),

38

//  array('5:00Uhr', 1950, 151), array('', 1960, 179), array('', 1970, 203),

39

//  array('6:00Uhr', 1980, 227), array('', 1990, 249), array('', 2000, 281,11,12,13),

40

41

$plot = new PHPlot(1800, 600);

42

$plot->SetImageBorderType('plain');

43

$plot->SetPlotType('lines');

44

$plot->SetDataType('data-data');

45

$plot->SetDataValues($data);

46

# Main plot title:

47

$plot->SetTitle('IAS Kuehlschrankdiagramm Zentrum NRW West');

48

$plot->SetXTitle('Tageszeit');

49

$plot->SetYTitle('Temperatur');

50

$plot->SetLegend(array('Kuelschrank1_Duesseldorf', 'Kuelschrank2_Duesseldorf','Kuelschrank1_Duisburg','Kuelschrank2_Duisburg'));

51

# Make sure Y axis starts at 0:

52

$plot->SetPlotAreaWorld(NULL, NULL, NULL, NULL);

53

$plot->DrawGraph();

54

55

56

?>

bilder unten(von phpmyadmin)

...zum Beitrag

Tschuldigung, das ich vergessen habe, den fehler zu beschreiben! eskommt immer ein weißer Hintergrund mit dieser schrift darauf: DrawGraph() No data Array;

...zur Antwort
Script funktioniert nicht?

mein script:

1

<?php

2

mysql_connect("localhost", "kühlschrank1","Wf8wVad5UMFtBGFD");

3

mysql_select_db("kühlschrank1");

4

$result = mysql_query("SELECT * FROM tbl_kuelschrank");

5

// PHPlot Example: Simple line graph

6

require_once 'phplot/phplot.php';

7

$data = array();

8

//mysql_connect("localhost", "Kühlschrank1", "Wf8wVad5UMFtBGFD");

9

//mysql_select_db("kühlschrank1");

10

//$querY = mysql_query("SELECT * FROM tbl_kühlschrank1");

11

//$x = 0;

12

//while($row = mysql_fetch_assoc($querry)){

13

//$data[] = array('',$x,$row['temparature']);

14

//x++;

15

16

//}

17

//$data = array(

18

//array('mittags', 190, 178);

19

//array('mittags', 190, 178);

20

//array('mittags', 190, 178);

21

//array('mittags', 10008, 178);

22

23

24

//);

25

$x = 0;

26

27

global $X;

28

while($row = mysql_fetch_assoc($result)){

29

$data[]  =       array('$x','mittag', $row['Kühlschrank1']);

30

}

31

32

33

//              array('0:00Uhr', 1800,   5,8,9,10), array('', 1810,   7), array('', 1820,  10),

34

//        array('1:00Uhr', 1830,  13), array('', 1840,  17), array('', 1850,  23),

35

//        array('2:00Uhr', 1860,  31), array('', 1870,  39), array('', 1880,  50),

36

//        array('3:00Uhr', 1890,  63), array('', 1900,  76), array('', 1910,  92),

37

//  array('4:00Uhr', 1920, 106), array('', 1930, 123), array('', 1940, 132),

38

//  array('5:00Uhr', 1950, 151), array('', 1960, 179), array('', 1970, 203),

39

//  array('6:00Uhr', 1980, 227), array('', 1990, 249), array('', 2000, 281,11,12,13),

40

41

$plot = new PHPlot(1800, 600);

42

$plot->SetImageBorderType('plain');

43

$plot->SetPlotType('lines');

44

$plot->SetDataType('data-data');

45

$plot->SetDataValues($data);

46

# Main plot title:

47

$plot->SetTitle('IAS Kuehlschrankdiagramm Zentrum NRW West');

48

$plot->SetXTitle('Tageszeit');

49

$plot->SetYTitle('Temperatur');

50

$plot->SetLegend(array('Kuelschrank1_Duesseldorf', 'Kuelschrank2_Duesseldorf','Kuelschrank1_Duisburg','Kuelschrank2_Duisburg'));

51

# Make sure Y axis starts at 0:

52

$plot->SetPlotAreaWorld(NULL, NULL, NULL, NULL);

53

$plot->DrawGraph();

54

55

56

?>

bilder unten(von phpmyadmin)

...zum Beitrag

Bitte richtige antworten!

...zur Antwort

Semikolons ......... hat funktioniert, danke. versuche mehr drauf zu achten!

...zur Antwort

ja, phpinfo() habe ich ausprobiert. funktioniert einwandfrei

...zur Antwort

Installiere doch einfach win 10 auf deinen Pc. Gibt's kostenlos als Image für einen Usb stick oder eine cd. Hier: https://www.microsoft.com/de-de/software-download/windows10

...zur Antwort

KiCad, Fritzing, Elwi oder Target 3001

...zur Antwort

Zur ersten Frage: hier ein Spannungsregler für 6-35V auf 12 V

...zur Antwort

Das sollte helfen: http://www.pcwelt.de/ratgeber/Wie\_Ubuntu\_Ihren\_PC\_retten\_kann-Ratgeber\_Linux-8703127.html

Hier gibt es Windows 10 kostenlos:

https://www.microsoft.com/de-de/software-download/windows10

am besten du befolgst die Anweisungen von PCWelt und brennst das Iso Image auf eine DVD. Dann von DVD starten und Windows 10 installieren.

Hier gibt es Ubuntu:

http://www.ubuntu.com/download/desktop

...zur Antwort

Wenn du noch einen rechner/Pc hast dann kanst du die Festplatte so bootfähig machen:


Schritt 2: Festplatte formatieren



Wenn Sie alle Dateien gesichert haben, können Sie die Festplatte formatieren:
1.Schließen Sie die Festplatte an Ihren Computer an und öffnen Sie im Explorer den "Arbeitsplatz".
2.Klicken Sie mit der rechten Maustaste auf das Laufwerk und wählen Sie "Formatieren".
3.Lassen Sie alle Einstellungen so wie sie sind und klicken Sie "Starten".

Schritt 3: Festplatte bootfähig machen



Festplatte im CMD bootfähig machen
Festplatte im CMD bootfähig machen
Wenn die Festplatte formatiert ist, machen Sie sie mithilfe der Eingabeaufforderung bootfähig:
1.Öffnen Sie das Programm "CMD" auf Ihrem Computer. Alternativ drücken Sie auf Ihrer Tastatur [WINDOWS+R], tippen cmd.exe ein und drücken Enter oder lesen Sie in diesem Praxistipp noch einmal nach.
2.Geben Sie in die Eingabeaufforderung "diskpart" und dann "list disk" ein und bestätigen Sie mit Enter.
3.Wählen Sie Ihre Festplatte aus, die Sie an der Kapazität erkennen. Geben Sie dazu "select disk [Nummer des Datenträgers]" ein und bestätigen Sie mit Enter.
4.Nun geben Sie "list partition" ein und bestätigen mit Enter. Wählen Sie die primäre Partition mit "select partition [Nummer der Partition]". Drücken Sie Enter.
5.Geben Sie "active" ein und bestätigen Sie ein letztes Mal mit Enter.

Wenn Sie das Betriebssystem, das Sie installieren möchten als CD oder DVD haben, kopieren sie das Image auf den Desktop. zum Installieren/ brennen auf der Festplatte nehmen sie am besten win 32 disk imager. Ich empfehle Linux Ubunto auf die Festplatte zu machen. Kopiere die Daten, indem du die Festplatte des PCs mit den Desktop verknüpfst. Nun kannst du win 10 auf eine cd brennen und (kostenlos!) und neu installieren. nun solltest du wieder vollen zugrff auf deinen rechner haben.

Dein Lars Klette

...zur Antwort

Danke 97BlackWolF97, ja das möchte ich.

Die spule soll für 3 10W LED Module funktionieren, so dass ich sie "direkt" in die Steckdose stecken kann. die Leds: http://www.ebay.de/itm/10-20-30-50-100W-LED-Chip-kuehlen-weisse-hohe-Leistung-SMD-LED-Lampe-900-9000LM-/121873199828?\_trksid=p2141725.m3641.l6368 es soll eine Lampe werden

...zur Antwort