A web-server is a system which delivers data such as web-pages to a client system.
0
votes
0answers
7 views
Yun - FileSystem.Open prevents client.println from outputting to web page
The below code is meant to display lines stored in a text file to an arduino based web page (it's a IR gate monitoring solution).
When I visit
I can execute client.println("hello") and I see the ...
0
votes
0answers
7 views
Control external device using Java Web Servlet -> Pi -> Arduino -> Device
I'm new to the world of Arduino & PI, so far it's been a fantastic experience but I'm now looking to build something a bit more practical.
My plan is for the PI to host a JSP Servlet website. ...
0
votes
0answers
33 views
Arduino Ethernet shield server and client at the same time
Hardware:
Arduino Mega 2560 Rev3
Ethernet Shield Rev3
A sensor
Goal:
Take value from sensor, upload it to ThingSpeak
Host a web page on the arduino
Question:
I've done both things in the ...
0
votes
0answers
20 views
How to use console.log message from nodejs server, to control led pin 13?
I want to use Arduino Yun as a client, that connects to my nodejs server, receives a message from nodejs and then change led pin 13 on/off according to the message send.
I have this example of a ...
0
votes
0answers
30 views
internet source for arduino web server
Few days back I started a project to interface ardunio with the ENC28J60 Ethernet shield. I am totally new to the world of electronics and i got the code for controlling an LED and reading an analog ...
0
votes
1answer
92 views
Arduino YUN server crashes after few hours!
I have made a simple server using the YUN SERVER and CLIENT Libraries./
The server runs on a loop and waits for a client to connect. After connection it sends the client a simple message and then ...
0
votes
2answers
40 views
Web Server Options
I want to give my project a simple web gui to change config options. I know I could get a shield and write some horrible html in c but I'm wondering if there is a better way. Is there another IC I ...
0
votes
1answer
134 views
Arduino WiFIWebSever - why client.println()?
I need to modify the WiFiWebServer example (http://arduino.cc/en/Tutorial/WiFiWebServer) on the Arduino website but I am having some trouble understanding the code. I am hoping to get some advice from ...
0
votes
1answer
132 views
Arduino Yun - Problem with bridge and client
I'm using this simple code
#include <Bridge.h>
#include <YunServer.h>
#include <YunClient.h>
YunServer server;
void setup() {
Serial.begin(9600);
Bridge.begin();
...
0
votes
2answers
65 views
arduino webserver serves single web page to WAN/Internet very very slowly
I have an arduino web server running from a mega 2560 and a wiznet ethernet shield.
It serves the single page just fine (and very fast) to the LAN (192.168.1.50), but serves the same page very, very, ...
0
votes
1answer
139 views
Arduino Ethernet and Uno R3 as a firewall
Is there a way to program the Ethernet Shield and Uno R3 to act as a firewall without using a huge chunk of the allowed bytes on the R3? I plan on using a DC adapter to plug the R3 into a wall, and ...
0
votes
0answers
206 views
Uploading Temperature data (DHT22) to Thingspeak with an ENC28J60
So, I've gotten my module working pretty well. It logs data from the DHT22 and sends it to a 192 address on my LAN. However, I'd like to log and graph the data.
I figured thingspeak is a decent ...
1
vote
2answers
136 views
Using a web server with Arduino
So I am not new to arduino, however, I am new with web servers. I am working on a project that can control a robotic arm that is at one location and I can be at my house. I know basic HTML, Basic CSS, ...
0
votes
0answers
187 views
Arduino GSM Shield web server hangs
I use official Arduino GSM Shield with Uno R3.
I uploaded web server examples from official GSM library. I use a simple python script to make TCP/IP connections to my GSM Shield web server. I send ...
0
votes
0answers
146 views
Can you interface GSM, wifi, and Bluetooth LE shield to Ardunio?
I have a project that requires the following three shields and I was wondering if the Arduino has enough space to interface all of them at the same time. I am thinking of connecting each shield into a ...
0
votes
1answer
1k views
Webserver with Arduino Yun without SD
I'm trying to set up a simple web-server with Arduino Yun without an SD card, i.e via REST, if I understood it right (I'm new to some of these stuff). I want to be able to "get" data (sent by Arduino) ...
0
votes
0answers
203 views
Problems powering stepper motor from web server (button) via Arduino Yun
I have my Arduino Yun set up with a web server. The webpage has a series of buttons on it, which control the buzzer playing various sounds, and a button to control a stepper motor. I'm using the code ...
0
votes
2answers
1k views
Arduino Yun Webpage Server Issues
So, I've made a sketch on my Yun, which I would like to be able to take information from a webpage (like a button) and have the Arduino Microcontroller perform functions based on what button is being ...
2
votes
1answer
824 views
Wifi server to control led on and off from local webpage.. - ..if statement doesnt work…
Im a newbie on this arduino thing and I would like to build a curtain remotecontrolled from a local webpage with 2 buttons... a up an a down...
I got the connection via my phone the the local page ...
2
votes
0answers
363 views
Bluetooth Master and Slave to track device's locations
I'm trying to create an app for my science fair that uses bluetooth to track people in a determined place.
I was thinking about one Arduino system to receive all the information and transmit through a ...
-1
votes
1answer
604 views
Arduino Yun and REST call security
I'm not expert about web development but very excited of doing some rest call using the yun as server (with a minimal python or node.js server inside the openwrt machine in the yun) and expose sensors ...
0
votes
1answer
297 views
Unable to read text file from server
I saw the Web client Example , In the example, the server connection is initialized in setup(). But I want the server to update the text file every time. So, I need the server connection to be in ...
0
votes
1answer
200 views
How to update a text file dynamically
I have Two Arduinos, One with the help of sensors it will dynamically updates in to my server database. Other Arduino, reads the stored contents from the server database and sends sms to phones.
Now, ...
0
votes
1answer
53 views
How Server request happens?
Can somebody explain the below code, like how the server understands,
how the request goes to the server from the below code.
if (client.connect(server, port))
{
client.print("GET /abc.txt");
...
0
votes
1answer
622 views
SMS in modem's memory
I am working on SMS communication with my phone and Arduino. My intension is simple. When somebody send an SMS, the Arduino should read a text file located on my server and forward the content to the ...
1
vote
1answer
514 views
How to read a Text file from server and store to a separate variable?
I am working on reading a text file from the server, using http://arduino.cc/en/Reference/GSMClientConnected. It gives me this code:
char path[]="/asciilogo.txt"
I want to store only the contents ...
1
vote
1answer
3k views
How to receive data from my Server database to a variable in my arduino?
I am learning to work with the client - server communication. I am able to communicate with my server and able to store values in the table. But I want to receive one of the specific data from the ...
1
vote
3answers
562 views
client.connect() fails except the first time
I am communicating with the Web server's database via Arduino GSM shield + GPRS connectivity
void loop()
{
if (client.connect(server, port))
{
.......
}
else
{
...
-1
votes
2answers
699 views
Arduino Mega & WiFi Shield; why webserver everytime says my A7 pin reads 0V?
I have got Arduino Mega 2560, Arduino WiFi Shield and resistor 1.5K. Now PWM 2 is attached to Res. then attached GND. 5V is attached between PWM2 and resistor's up point. I want to read Arduino Mega's ...
-2
votes
1answer
260 views
Analog average sample wind speed sensor
I have wind speed sensor that can measure max speed upto 30 m/s with analog out put 0-5v. I have simple code calling from the loop. When I put the wind speed average code, the web server is not ...
1
vote
1answer
196 views
Ethernet sheild programming
This is first time programming with Ethernet shield . I want to test the web server application with my Arduino. I have an Arduino Uno, Ethernet shield, and a potentiometer. Below code being uploaded.
...
5
votes
2answers
3k views
How do I use Arduino and node.js?
I am new to Arduino, however I have experience in web development, lately I have been using, meteor js and the mean stack for different projects. However, I am open to trying any language for ...
27
votes
9answers
2k views
Is an Arduino capable of running 24/7?
I'm making a simple Arduino web server and I want to keep it turned on all the time. So it must endure to stay working continuously.
I'm using an Arduino Uno with a Ethernet Shield.
It's powered ...