Loading...
  Show Posts
Pages: [1] 2 3
1  Products / Arduino Due / Re: problem with the programming port(no device found on COM18) on: May 14, 2013, 04:11:30 am
I uploaded a sketch which some Serial.println(); commands via the native usb port. Then I connected a RS232 Module to the TX0 and RX0 pin and connected it with Putty (terminal programm), but I didn't received any data. After that I used the Serial3.println(); command and connected the module to the TX3 and RX3 pins and then I received the sent data. I think that I had destroyed my arduino  smiley-cry
2  Products / Arduino Due / Re: Upload Problem(Rx Blinks Only) No Device Found on: May 12, 2013, 02:28:15 pm
Hi!
I got the same problem. I tried to fix it like that but it didn't work. Have you got some other ideas.
3  Products / Arduino Due / Re: No device found on COM9 on: May 11, 2013, 08:30:52 am
I have got the same problem and I also don't know why.
4  Products / Arduino Due / Re: problem with the programming port on: May 11, 2013, 07:46:08 am
The native port isn't the problem. I can't upload a sketch via the programming port.
5  Products / Arduino Due / Re: problem with the programming port on: May 11, 2013, 07:10:18 am
Thank you for your help, but it didn't work. When I connect the due with the native port to my pc it's name is bossa program port when I upload a sketch it's name is Arduino Due. Could it be possible that I have destroyed my arduino?
6  Products / Arduino Due / problem with the programming port(no device found on COM18) on: May 11, 2013, 05:44:17 am
Hi,
If i try to upload a sketch to my due via the programming port, the IDE writes "no device found on COM18". But it has already worked. I use windows and I have installed the driver for the board. However when I try to upload a sketch via the native usb port it works. I have also tried it with another pc but there was no difference. How can I fix this problem.
7  International / Deutsch / Re: arduino due wird nicht gefunden on: May 10, 2013, 10:11:09 am
ja hab ich immer gemacht
8  International / Deutsch / arduino due wird nicht gefunden on: May 10, 2013, 09:33:24 am
Hallo!
Wenn ich auf meinen Due über den programming Port ein Programm uploaden will kommt die Meldung: " No device found on COM18". Wenn ich ein Programm über den Native Port uploade funktioniert alles einwandfrei. Zusätzlich der ARM Chip sehr heiß. Hab ich meinen Arduino zerstört?

mfg
Michael
9  International / Deutsch / Re: batteriebetriebener Roboter on: May 09, 2013, 04:53:45 pm
Danke für die schnelle Hilfe!
10  International / Deutsch / batteriebetriebener Roboter on: May 09, 2013, 04:28:51 pm
Hallo!
Ich will einen kleinen Roboter mit Ultraschallsensor bauen. Der Sensor ist dabei nicht das Problem, sondern die Motoren. Wenn ich meinen Arduino Uno über das USB-Kabel versorge funktioniert alles, wenn ich aber dann eine 9V Batterie anschließe, beginnt der Arduino sich ständig zu reseten.
Ich verwende 4.5V DC Motoren. Für die Ansteuerung verwende ich jeweils einen BD243C + Freilaufdiode(1N4148). (Grund: weil ich gerade keinen speziellen Motortreiber zu Hause hatte.) Meine Frage ist, wie kann ich das ständige reseten vermeiden?
Bin für jede Hilfe dankbar!

mfg
Michael
11  International / Deutsch / Re: Temperatur mit Ethernetshield ins Netzwerk übertragen on: March 04, 2013, 09:47:10 am
Hallo,
nachdem ich die while-Schleife gelöscht habe hat es funktioniert. Seltsam ist nur, dass ich mir sicher bin das ich eine 5V Version bestellt hab aber er nur funktionert wenn ich ihn an die 3.3V anschließe.

Frage zur Auswertung:
Ich glaube das die Auswertung des LM75 nicht die richtigen Werten berechnet. Ich hab die Auswertung aus einem Buch. Könnt ihr mir vl sagen wie man das besser machen kann?
12  International / Deutsch / Re: Temperatur mit Ethernetshield ins Netzwerk übertragen on: March 01, 2013, 04:23:47 pm
Die Widerstände in der Zeichnung sind keine 220R sondern 10k und natürlich ist auf dem uno noch das ethernetshield.
13  International / Deutsch / Re: Temperatur mit Ethernetshield ins Netzwerk übertragen on: March 01, 2013, 01:19:55 pm
Hallo,
das Auslesen des Sensors hat aber schon so funktionert.

mfg
Michael
14  International / Deutsch / Temperatur mit Ethernetshield ins Netzwerk übertragen on: March 01, 2013, 12:40:25 pm
Hallo,
ich habe vor die Temperatur im Keller mit einem LM75 zu messen und dessen über I²C auszulesen und, das dann mit einem Ethernetshield in mein Netzwerk zu übertragen. Ich habe schon den Beispiel Webserver getestet und dieser funktioniert auch. Mein Problem ist, dass wenn ich den LM75 auslesen möchte, sich der Webserver aufhängt.
Was mach ich falsch?

mfg
Michael

Code:
#include <Wire.h>
#include <SPI.h>
#include <Ethernet.h>
#define LM75_1 0b1001000
// Enter a MAC address and IP address for your controller below.
// The IP address will be dependent on your local network:
byte mac[] = {
  0x90, 0xA2, 0xDA, 0x0D, 0xD6, 0x03 };
IPAddress ip(10,0,0,177);
float temp;
// Initialize the Ethernet server library
// with the IP address and port you want to use
// (port 80 is default for HTTP):
EthernetServer server(80);

float LM75()
{
  byte msb_1,lsb_1=0;
    float Degrees_1=0; 
 
    // read LM75_1   
    Wire.beginTransmission(LM75_1);
    Wire.write(0x00);
    Wire.endTransmission();
    Wire.requestFrom(LM75_1, 2);
    while(Wire.available() < 2);     
    msb_1 = Wire.read(); lsb_1 = Wire.read();
    if(msb_1 < 0x80)
    {
      Degrees_1=((msb_1*10)+(((lsb_1&0x80)>>7)*5));
    }
    else
    {
      Degrees_1=((msb_1*10)+(((lsb_1&0x80)>>7)*5));
      Degrees_1=-(2555.0-Degrees_1);
    }
    Degrees_1=Degrees_1/10;
   
    return Degrees_1;
}
void setup() {
 // Open serial communications and wait for port to open:
  Serial.begin(9600);
   while (!Serial) {
    ; // wait for serial port to connect. Needed for Leonardo only
  }
  // start the Ethernet connection and the server:
  Ethernet.begin(mac, ip);
  server.begin();
  Serial.print("server is at ");
  Serial.println(Ethernet.localIP());
}


void loop()
{
 
   temp=LM75();
  // listen for incoming clients
  EthernetClient client = server.available();
  if (client) {
    Serial.println("new client");
    // an http request ends with a blank line
    boolean currentLineIsBlank = true;
    while (client.connected()) {
      if (client.available()) {
        char c = client.read();
        Serial.write(c);
        // if you've gotten to the end of the line (received a newline
        // character) and the line is blank, the http request has ended,
        // so you can send a reply
        if (c == '\n' && currentLineIsBlank) {
          // send a standard http response header
          client.println("HTTP/1.1 200 OK");
          client.println("Content-Type: text/html");
          client.println("Connnection: close");
          client.println();
          client.println("<!DOCTYPE HTML>");
          client.println("<html>");
                    // add a meta refresh tag, so the browser pulls again every 5 seconds:
          client.println("<meta http-equiv=\"refresh\" content=\"5\">");
          // output the temperature
            client.println("Arduino Webserver");
            client.println("Temperatur im Keller:");
            client.print("T= ");
            client.print(temp);
            client.print("°C");
            client.println("<br />");       
 
          client.println("</html>");
          break;
        }
        if (c == '\n') {
          // you're starting a new line
          currentLineIsBlank = true;
        }
        else if (c != '\r') {
          // you've gotten a character on the current line
          currentLineIsBlank = false;
        }
      }
    }
    // give the web browser time to receive the data
    delay(1);
    // close the connection:
    client.stop();
    Serial.println("client disonnected");
  }
}
15  International / Deutsch / Arduino Micro RX-Led on: February 26, 2013, 04:30:42 pm
Hallo!
Ich hab heute meinen Arduino Micro bekommen und gleich ausprobiert. Es funktioniert auch alles nur leuchtet die RX-Led durchgehend.
Ist das normal?

mfg
Michael
Pages: [1] 2 3