The tag has no usage guidance.

learn more… | top users | synonyms

1
vote
1answer
30 views

HTTP Post not working

I am wanting to POST some data from Arduino to WebService (written in .NET), intending to save some temperature data to MS SQL Server. My code in arduino is: void PostarDados(String dados, String ...
0
votes
1answer
51 views

Senda Data using Arduino GSM shield get/post/put?

Hi i try to modifiy arduino gsm library Xively example to geeknesia.com the serial said "successconnecting.." but i didn't get any value change in the website. Do i make mistake with this code? //...
2
votes
0answers
239 views

Sending data from Arduino UNO as a SOAP request

I have a servo motor on one end which can be turned ON and OFF with Web Service sending SOAP request. In the other end I have my Aurdino UNO with ESP8266.Currently, I can able to send HIGH or LOW ...
0
votes
3answers
142 views

Send commands to Arduino from the WEB

I need to send Arduino some instructions from the web. Basically I would have a web app with a few buttons, and when I press them they send an instruction to Arduino to move for example a motor or ...
1
vote
2answers
75 views

How to setup Uno + xbee shield 1.1 + wee wifi chip?

I am an absolute beginner with electronics and Arduino. I have this hardware: arduino uno xbee shield 1.1 wee wifi chip I've tried to make them work (to connect my Uno to the Internet) but I can't ...
1
vote
1answer
571 views

How to send Json to a webservice from pc/RPI with live data from Arduino(serial)

I'm making a project where my plan is to take sensor input from the Arduino, and then pass that info (by serial/usb connection) through either a laptop or a Raspberry Pi and convert it to Json and ...
0
votes
1answer
303 views

Cannot send two arguments from a WebClient

I am using the Arduino WifiWebClient to insert records into a RoR (Ruby on Rails) app. It works but it only inserts one field regardless of the number of arguments I send. For example, if I test ...
0
votes
1answer
509 views

Webservice C# JSON to Arduino

I have a project in Microsoft Visual Studio C# and I have to pass JSON data to my Arduino via Ehternet Shield. This is how it works: Is it possible? How to do it?
0
votes
2answers
3k 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
0answers
300 views

Arduino + Web Service [closed]

I am doing my CBT, and i need help... I need a Webservice in C#, and it will send commands to my Arduino( Mega 2560 + Ehternet Shield )... My Webservice will recibe commands from Android and Web ...
-1
votes
2answers
1k views

Arduino Mega & WiFi Shield; why web server every time 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 the resistor then attached GND. 5V is attached between PWM2 and resistor's up point. I want to read the ...
-4
votes
1answer
363 views

What's the best way to put in a database sensors data's [closed]

I have not already started to try but I'm a good webmaster and I'm just asking which way is more suitable for sending and keeping data from sensors and I/0 state in a database. Here are some points: ...
10
votes
2answers
12k views

Post Data To a Web Service From Arduino

If you want to submit sensor data such as temperature to a remote server/database somewhere you need to use some kind of call to a web server since it isn't possible to connect directly to a database ...