Loading...
  Show Posts
Pages: [1] 2 3 ... 83
1  Using Arduino / Motors, Mechanics, and Power / Re: Food Grade or acceptable electronics on: May 20, 2013, 01:02:14 pm
I think My Food grade pump and the valve problem is sorted!(I found someone on ebay), Now I'm looking towards a Food Grade Heater?
2  Using Arduino / Motors, Mechanics, and Power / Re: Food Grade or acceptable electronics on: May 20, 2013, 11:12:43 am
I think I have sorted out the valve problem they dont need to be strictly food grade but with the PUMP I'm looking for a cheap substitute for this >> http://morebeer.com/products/chugger-high-temperature-polysulfone-brew-pump.html
3  Using Arduino / Motors, Mechanics, and Power / Re: Food Grade or acceptable electronics on: May 20, 2013, 11:08:18 am
Quote
Adafruit sells this inexpensive peristaltic pump:

http://www.adafruit.com/products/1150

Need to deal with around 15 gallon however its a good system but at 100ml /min it is slow
4  Using Arduino / Motors, Mechanics, and Power / Food Grade or acceptable electronics on: May 19, 2013, 12:08:01 am
I'm looking out for PUMP's and VALVE's that can pump and direct food grade material like juices etc any links?
I want cheap alternatives
5  Community / Bar Sport / Re: new King in The Netherlands on: May 15, 2013, 02:13:59 pm
Congos to Robtillaart! anywhere in the world! if he's listening.
6  Community / Bar Sport / Re: can't touch this! on: May 15, 2013, 02:04:15 pm
Folks used some French it seems , my translator isn't working right ,seems I have lost the fun!
7  Community / Bar Sport / Re: joke on: May 15, 2013, 02:01:26 pm
Quote
What did the anode say to the cathode?

Why are you so negative?

hahahahahhohohoho
8  Community / Bar Sport / Re: how to impress a girl with arduino! on: May 15, 2013, 01:55:59 pm
Sheesh! you are lucky man.

Look at me : I wrote WANTED! A Girl with LOVE for me and Arduino! and its been a Tonn posts since then STILL I'm SingleTONN , HAHA smiley-draw 
9  Community / Bar Sport / Re: UDOO --- hybrid board does Linux or Android with Arduino on: May 15, 2013, 01:52:07 pm
Quote
Have you seen the line of boards sold by Olimex (Olinuxino)?

Cheap good things, uses popular processors BUT boards from them are not so popular among the developer as compared to the likes of BeagleBone or the RPi or other TI sitara based complete development system
10  Using Arduino / General Electronics / Re: Smallest + cheapest AC to DC electric module on: April 28, 2013, 04:49:18 am
Geoff,

Thanks for getting back I already use the phone chargers and etc very easy and good working cheap wallwart adapters but the problem that In my implication the space available is pretty much less and I need a small solution I understand that a couple or passives definitely need to go in the circuitry.
11  Using Arduino / General Electronics / Smallest + cheapest AC to DC electric module on: April 28, 2013, 03:43:12 am
Hi Folks,

Need to drive AVR's with power coming from wallwart , I have the option of using a transformer but that is a big size solution! so anything out there you are using that is akin to a IC and converts from wallwart AC (120VAC/250VAC) to DC 5 volt logic level?
12  Using Arduino / Networking, Protocols, and Devices / Re: GET/ requests Headache on: April 19, 2013, 12:48:59 am
Now I'm able to find the file:

here's the error in Php file that IM getting now:

Code:

PHP Error Message

Warning: imap_open() [function.imap-open]: Couldn't open stream {imap.gmail.com:993/imap/ssl}INBOX in /home/a6194138/public_html/email_dante.php on line 8

Free Web Hosting
Cannot connect to Gmail: Can't connect to gmail-imap.l.google.com,993: Connection timed out
13  Using Arduino / Networking, Protocols, and Devices / Re: GET/ requests Headache on: April 18, 2013, 01:29:20 pm
@ SurferTIM , I added your code and its below(just commented out>>    client.println("HOST: winacro.com")smiley-wink

Code:
/*
  
#include <SPI.h>
#include <Ethernet.h>

int relayPin = 9;
char Str[11];
int prevNum = 0;
int num = 0;
long onUntil = 0;
int connectLoop;

long pollingInterval = 5000; // in milliseconds
long onTime = 60000; // time, in milliseconds, for lights to be on after new email or comment

// Enter a MAC address for your controller below.
// Newer Ethernet shields have a MAC address printed on a sticker on the shield
byte mac[] = {  0x90, 0xA2, 0xDA, 0x0D, 0x78, 0xE1 };
char serverName[] = "winacro.com";



// Initialize the Ethernet client library
// with the IP address and port of the server
// that you want to connect to (port 80 is default for HTTP):
EthernetClient client;

void setup() {
  Serial.begin(9600);
  pinMode(relayPin, OUTPUT);
  // start the Ethernet connection:
  if (Ethernet.begin(mac) == 0) {
    Serial.println("Failed to configure Ethernet using DHCP");
    // no point in carrying on, so do nothing forevermore:
    while(true);
  }
  // give the Ethernet shield time to initialize:
  delay(2000);

}

void loop()
{
    Serial.println("connecting...");

  // if you get a connection, report back via serial:
  
  if (client.connect(serverName, 80)) {
    Serial.println("connected");
    // Make a HTTP request:
    client.println("GET /PHP/email.php HTTP/1.1");
    //client.println("HOST: winacro.com");
    client.println();
    int timer = millis();
    //delay(1000);
  }
  else {
    // if you didn't get a connection to the server:
    Serial.println("connection failed");
    
  }
// if there's data ready to be read:
  while(client.connected())  {
    while(client.available())    {
      char inChar = client.read();
      Serial.write(inChar);
      // set connectLoop to zero if a packet arrives
      connectLoop = 0;
    }

    connectLoop++;

    // if more than 10000 milliseconds since the last packet
    if(connectLoop > 10000)    {
      // then close the connection from this end.
      Serial.println();
      Serial.println(F("Timeout"));
      client.stop();
    }
    // this is a delay for the connectLoop timing
    delay(1);
  }

  Serial.println();

  Serial.println(F("disconnecting."));
  // close client end
  client.stop();  
  if(num > prevNum) {
      Serial.println("New Comment.");
      digitalWrite(relayPin, HIGH);
      prevNum = num;
      onUntil = millis() + onTime;
    }
    else if(millis() > onUntil)
    {
     digitalWrite(relayPin, LOW);
    }
  //delay(pollingInterval);
}


and I get the following with it:
Code:
connecting...
connected
HTTP/1.1 400 Bad Request
Date: Thu, 18 Apr 2013 18:25:33 GMT
Server: Apache
Content-Length: 226
Connection: close
Content-Type: text/html; charset=iso-8859-1

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>400 Bad Request</title>
</head><body>
<h1>Bad Request</h1>
<p>Your browser sent a request that this server could not understand.<br />
</p>
</body></html>

disconnecting.
connecting...

if i keep the     client.println("HOST: winacro.com"); then i'm not able to connect!
14  Using Arduino / Networking, Protocols, and Devices / Re: GET/ requests Headache on: April 18, 2013, 11:58:16 am
Quote
I am more confident with Arduino team's ability to write a decent firmware and library than other makers also.

RN-171 and other many flavors are from MicroChip and you know microchip is the best when it comes to good quantity manufacturing  and thus cost gets dropped, neverthless this is my analysis.
15  Using Arduino / Networking, Protocols, and Devices / Re: GET/ requests Headache on: April 18, 2013, 01:44:23 am
Sir Liudr,

I think the Arduino WiFi shield doesn't have that kind UART communication facility everything needs to work through its library!
The biggest thing working with a ARduino WiFi shield is its cost at the very first time I was turned down with it, Learning to work with something which will hardly have any end product place is not good , and in case of Arduino WiFi shield this is the case because of its cost, I that's why picked up a RN-171 and Now im eyeing that very cheap TIcc3000 chip that can go upto $10 for 1000 pcs that's pretty cheap when it comes to connecting anything to the Internet!
Pages: [1] 2 3 ... 83