Show Posts
|
|
Pages: 1 [2] 3
|
|
16
|
Using Arduino / Interfacing w/ Software on the Computer / Understanding Server Data (Then generating bar graph)
|
on: September 01, 2012, 05:06:59 pm
|
|
Hi,
I am new to networking in general.
I am receiving a data strand in this format. (I can control the format, for example i can change the denotation)
This strand of data is very simple and is of two ATD values, [1],[2],[1],[2]. etc
368,175,367,175,368,175,368,175,368,175,368,175, etc
I want to create a simple bar graph of these two data inputs.
How do i tell Processing that the first value is data[1], the second value is data[2], then the next is data[1].. and so on?
Thanks for reading this.
I appreciate that it is a nooby question.
Even if you could point me in the right direction - that would be great.
|
|
|
|
|
17
|
Using Arduino / Project Guidance / Arduino with Wifi to Processing
|
on: September 01, 2012, 09:36:44 am
|
|
Hi all,
What is the best way to receive data from a arduino+wifi acting as a server?
I am only interested in analog sensors on my arduino board.
(I can happily use the arduino+wifi as a webserver and view values back through html)
I was wondering the best way about going from Arduino+Wifi to Processing?
Many thanks,
|
|
|
|
|
20
|
Using Arduino / Installation & Troubleshooting / Re: WiFly Shield
|
on: August 24, 2012, 11:17:30 am
|
Hi, Currently I am in he same sort of situation as you where. I have a wifly on my arduino. In the serial monitored i received information from the board but when i require to go into CMD, (by typing $$$) nothing happens. In fact when i type any command it will not do anything with it. I have recently made a post about it please see: http://arduino.cc/forum/index.php/topic,119951.0.htmlI will implement what you post says and fingers crossed it will sort it. Many thanks
|
|
|
|
|
21
|
Using Arduino / Networking, Protocols, and Devices / WiFly Configuration Process - No response to $$$
|
on: August 24, 2012, 10:07:05 am
|
Hi All. Currently I have a Wifly on my arduino uno. The configuration process involves using the serial monitor to send '$$$' to set the wifi shield into command mode. (From there i can tell it what to do) I send the command $$$ but get no response. (I should get 'CMD') The device is connected since I get: Starting WebTime - Please wait. RAM :1226 Arduino Rx Pin (connect to WiFly Tx)  Arduino Tx Pin (connect to WiFly Rx):1 So i type $$$ in carriage return.. but receive nothing. When i send a command i see a LED light on the arduino (a message is being sent from my pc to it) Has anyone come across a problem like this? I have tried various libraries/examples etc. Do I need to set my arduino into a reset mode or something? I just cant get into command mode on the wifly. Many thanks [My Hardware: Arduino Uno (USB) Wifly RN-131C]
|
|
|
|
|
23
|
Using Arduino / Networking, Protocols, and Devices / 2 Signals + Wifly to iPad
|
on: August 21, 2012, 01:40:37 pm
|
|
Hi all, i'm looking for a bit of guidance:
As stated in the title I would like to transmit 2 signals (off a arduino uno + wifly) onto a devise like a iPad.
My area of uncertainty is way to go from the transmission to the receiver.
I have my Wifly piggybacked onto the arduino.
I suppose the questions are: 1. Wifly set up. (How do i tell the Wifly the channels of interest, or channels to send. (Eg serialprint)) 2. Receiving the data on a wifi receiver. (Can i do this by utilizing the built in wifi transceiver in products like iPads?) 3. Displaying the data. (Processing program is what I have in mind)
I have checked out some tutorials but I feel this project is not as complex as some. I only want to go from:
Wifly--->View results on screen.
Thanks for you time, any links of guidance that you recommend would be much appreciated.
Kind regards.
|
|
|
|
|
25
|
Using Arduino / Networking, Protocols, and Devices / Wifi Shield Choice
|
on: August 19, 2012, 07:36:08 am
|
|
Greetings all,
Currently I have Arduino Uno R3 and was wondering what shield to use to wirelessly transmit some data?
I'm aware Arduino have released their own wifi shield.
Essentially, I need to do is transmit two analog signals on a wifi network for later processing.
Could anyone suggest a shield that may be suitable for me?
Many thanks,
|
|
|
|
|
28
|
Using Arduino / Sensors / Re: Measure distance or direction with accelerometer?
|
on: August 04, 2012, 07:51:58 pm
|
|
From the description i'm not quite sure on the application but be aware that:
Displacement is the double integral of a Raw Acceleration in a given time period.
Measuring displacements with accelerometers is possible yes.
But, please consider the behaviors differences of piezo vs strain gauge accelerometers in low to high frequencies. (Ie, piezo types are not responsive to low frequencies (>50Hz) or changes in direction, if you are considering measuring a humans foot step it can be assumed that one footstep =~1Hz, this is low and I very much doubt peizo accels would give you any good data.)
Kind regards,
|
|
|
|
|
29
|
Using Arduino / Sensors / Sensor Calibration Scan after a Button Input
|
on: August 04, 2012, 06:55:40 pm
|
|
First off, massive respect to those who spent their time helping on the forums.
Personally I have learnt so much from troubleshooting using the forum search bar, a big thanks.
My problem. (I'm assuming it will be a easy fix)
I have a loadcell +amp chip, achieving good signals.
My system currently calibrates itself on start up. (I physically cycle the load cell)
[while (millis() < 5000) { sensorValue0 = analogRead(sensorPin0);
// record the maximum sensor value if (sensorValue0 > sensorMax0) { sensorMax0 = sensorValue0; }
// record the minimum sensor value if (sensorValue0 < sensorMin0) { sensorMin0 = sensorValue0; } ]
I then map the values for the processing i require.
I do not have the experience to define a calibration sequence (for a time period, like 5 seconds) after a button demand.
I have done all the relevant tutorials but I cannot find something that works.
My button command will have to be a analog signal, just to make things a little more awkward. Eg:
[ buttonState = analogRead(A3); if (buttonState > 1000) { Do something}
]
To summarise - How do I calibrate a sensor for a given time period after a command?
A flow chart along the lines of:
[Button Pressed] -> [Start calibration 'scan'] -> [5secs delay]-> [Stop Cal scan]->[Generate Min and Max Values]
Kind regards, Calibration-Noob Will.
|
|
|
|
|