Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations SDETERS on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Microcontroller 1

Status
Not open for further replies.

Pilosopo Tasyo

Mechanical
Jan 2, 2020
3
Hi! I'm looking for a micro-controller with many analog input as possible and can be connected to display/monitor/computer for monitoring purposes.
Please let me now what brand and model of micro-controller that can be used. Thank you!
 
Replies continue below

Recommended for you

That is a wide open question. I like Microchip or Atmel (which microchip owns now I believe).
 
I don't think the OP is looking for a microcontroller, he's looking for a full data monitoring/logging system (ala PLC, etc.). A microcontroller will need a lot of external components to do what you're asking of it.

Dan - Owner
Footwell%20Animation%20Tiny.gif
 
Perhaps, but the ATMega Arduino controllers ostensibly have 8 channels of 10-bit ADC. The main advantage of the Arduino is the relatively simplistic programming interface.

Alternately, one can get an ADC shield for a Raspberry Pi
If the OP's intent is solely monitoring; a PLC is a bit of an overkill, unless massive numbers of inputs are needed. For that, there are other options as well:
The OP needs to better define what they want

TTFN (ta ta for now)
I can do absolutely anything. I'm an expert! faq731-376 forum1529 Entire Forum list
 
"...can be connected to display/monitor/computer for monitoring purposes."

Arduino is a very good suggestion, but the easiest connection to a ".../computer..." would be via the USB-connected IDE's Serial Monitor window (which is built-in and very easy). Moving the data beyond the IDE's Serial Monitor window becomes a PC programming exercise.

The best solution depends on details as-yet unmentioned.

 
Haven't touched my Arduino in 5 yrs, but my recollection was having a rudimentary IDE that allowed for debugging and data logging to the window, which you can pipe into a file.

Code:
/*
  Analog input, analog output, serial output
 
 Reads an analog input pin, maps the result to a range from 0 to 255
 and uses the result to set the pulsewidth modulation (PWM) of an output pin.
 Also prints the results to the serial monitor.
 
 The circuit:
 * potentiometer connected to analog pin 0.
   Center pin of the potentiometer goes to the analog pin.
   side pins of the potentiometer go to +5V and ground
 * LED connected from digital pin 9 to ground
 
 created 29 Dec. 2008
 Modified 4 Sep 2010
 by Tom Igoe
 
 This example code is in the public domain.
 
 */

// These constants won't change.  They're used to give names
// to the pins used:
const int analogInPin = A0;  // Analog input pin that the potentiometer is attached to
const int analogOutPin = 9; // Analog output pin that the LED is attached to

int sensorValue = 0;        // value read from the pot
int outputValue = 0;        // value output to the PWM (analog out)

void setup() {
  // initialize serial communications at 9600 bps:
  Serial.begin(9600); 
}

void loop() {
  // read the analog in value:
  sensorValue = analogRead(analogInPin);            
  // map it to the range of the analog out:
  outputValue = map(sensorValue, 0, 1023, 0, 255);  
  // change the analog out value:
  analogWrite(analogOutPin, outputValue);           

  // print the results to the serial monitor:
  Serial.print("sensor = " );                       
  Serial.print(sensorValue);      
  Serial.print("\t output = ");      
  Serial.println(outputValue);   

  // wait 10 milliseconds before the next loop
  // for the analog-to-digital converter to settle
  // after the last reading:
  delay(10);                     
}

TTFN (ta ta for now)
I can do absolutely anything. I'm an expert! faq731-376 forum1529 Entire Forum list
 
The latest Arduino announcement:
The STM32H747XI dual Cortex®-M7+M4 32bit low power ARM MCU has three 16-bit ADCs which support up to 36 channels. All for a measly $99 and it comes with hardware interconnect security features built-in.

TTFN (ta ta for now)
I can do absolutely anything. I'm an expert! faq731-376 forum1529 Entire Forum list
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor