ethernet temp and accelerometer

F

Fibo

Guest
Hello,

Does anyone know of a temp sensor and/or accelerometer that can communicate over ethernet... or maybe a simple microcontroller that can hook up to some sensors and output the data over ethernet?

Much thanks!
 
On Thursday, June 27, 2019 at 2:53:06 PM UTC-7, Fibo wrote:
Hello,

Does anyone know of a temp sensor and/or accelerometer that can communicate over ethernet... or maybe a simple microcontroller that can hook up to some sensors and output the data over ethernet?

Well, an ethernet camera can be aimed at a liquid-in-glass thermometer, or weight-on-spring
accelerometer, if you just need a one-off. Most accelerating items aren't
really suitable for a wire tether, and few uses of a thermometer need LAN connectivity.
My kitchen candy-making doesn't need an Internet connection, for instance.

Every 'simple microcontroller' can hook up to some sensors and output data.
 
A Raspberry Pi would easily do that

Just search google and you will get many hits with thorough guidance

Cheers

Klaus
 
In article <d45acc5c-5d67-4884-8ce1-7463570d7129@googlegroups.com>,
Fibo <panfilero@gmail.com> wrote:
Hello,

Does anyone know of a temp sensor and/or accelerometer that can communicate over ethernet... or maybe a simple
microcontroller that can hook up to some sensors and output the data over ethernet?

https://www.arduino.cc/en/Tutorial/WebServer would be one approach:
an Arduino (or similar, such as a Teensy), an Ethernet shield for it,
and a simple Arduino sketch (program).

Open a TCP connection to it and it'll read the analog voltages from
the 6 Arduino analog-input pins, and reply with the voltages.

You could either do the voltage-to-sensor-meaning conversions in the
sketch, or do them on whatever client system is being used.

Feel free to change the output format from HTTP-style to anything
else.
 
On Friday, 28 June 2019 07:53:06 UTC+10, Fibo wrote:
Hello,

Does anyone know of a temp sensor and/or accelerometer that can communicate over ethernet... or maybe a simple microcontroller that can hook up to some sensors and output the data over ethernet?

Much thanks!

Any of the ESP32-based boards (OK they're Wifi, not wired ethernet) could easily do it...

--
Chris.
 
On Thursday, June 27, 2019 at 5:53:06 PM UTC-4, Fibo wrote:
Hello,

Does anyone know of a temp sensor and/or accelerometer that can communicate over ethernet... or maybe a simple microcontroller that can hook up to some sensors and output the data over ethernet?

Much thanks!

I like the camera! LOL!
 
Fibo wrote...
Does anyone know of a temp sensor and/or
accelerometer that can communicate over ethernet...

While creating my 14 sensor TH-stick a few months
ago, I considered adding an accelerometer sensor.
All 14 parameters were well suited for periodic
sampling, e.g., every 10 minutes, saving power,
I2C data communication and processor time. But
the accelerometer was another matter. In one
form, it samples continuously. In others, it's
smart enough to run sampling itself, reporting
maximums, etc. Power consumption is an issue.
In the end I discarded the whole idea.


--
Thanks,
- Win
 

Welcome to EDABoard.com

Sponsor

Back
Top