|
[SOLVED] Arduino UNO with TeaCup - problem with thermistor 100k ohm April 03, 2016 06:38AM |
Registered: 10 years ago Posts: 29 |
|
Re: Arduino UNO with TeaCup - problem with thermistor 100k ohm April 03, 2016 07:17AM |
Admin Registered: 15 years ago Posts: 7,333 |
|
Re: Arduino UNO with TeaCup - problem with thermistor 100k ohm April 03, 2016 07:56AM |
Registered: 10 years ago Posts: 29 |
|
Re: Arduino UNO with TeaCup - problem with thermistor 100k ohm April 03, 2016 08:33AM |
Admin Registered: 15 years ago Posts: 7,333 |
|
Re: Arduino UNO with TeaCup - problem with thermistor 100k ohm April 03, 2016 09:01AM |
Registered: 10 years ago Posts: 29 |
|
Re: Arduino UNO with TeaCup - problem with thermistor 100k ohm April 04, 2016 02:46AM |
Registered: 10 years ago Posts: 29 |
void setup() {
Serial.begin(115200);
}
void loop() {
int val;
val=analogRead(0); //Read the analog port 0<- this value was modified in range [0-5]
Serial.println(val);
delay(1000);
}
|
Re: Arduino UNO with TeaCup - problem with thermistor 100k ohm April 04, 2016 05:21AM |
Registered: 16 years ago Posts: 7,616 |
| Generation 7 Electronics | Teacup Firmware | RepRap DIY |
|
Re: Arduino UNO with TeaCup - problem with thermistor 100k ohm April 04, 2016 05:52AM |
Registered: 10 years ago Posts: 29 |
|
Re: [SOLVED] Arduino UNO with TeaCup - problem with thermistor 100k ohm April 04, 2016 07:54PM |
Registered: 10 years ago Posts: 21 |