Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

getTemperatureInternal() for tiny 84 #1

Open
SuperJerry69 opened this issue May 15, 2016 · 1 comment
Open

getTemperatureInternal() for tiny 84 #1

SuperJerry69 opened this issue May 15, 2016 · 1 comment

Comments

@SuperJerry69
Copy link

Original GetTemperature fct is only for atmega 328 ...

int8_t` getTemperatureInternal() {

 //reads internal internal temp with 1V1 reference
  #if defined (__AVR_ATtiny24__) || defined(__AVR_ATtiny44__) || defined(__AVR_ATtiny84__) // 
    ADMUX = (1<<REFS1) | (1<<MUX5)| (1<<MUX1); //turn 1.1V reference and select ADC8 For ATtiny84
    #elif (__AVR_ATtiny25__) || defined(__AVR_ATtiny45__) || defined(__AVR_ATtiny85__)// -40°=230lsb +25°=300lsb +85=370lsb
    ADMUX = (1<<REFS1) | (1<<MUX3)| (1<<MUX2)| (1<<MUX1)| (1<<MUX0); //turn 1.1V reference and select ADC4 For ATtiny85
  #elif defined(__AVR_ATmega1284P__)
      // For ATmega1284 not working
  #else // -45°=242mV +25=314mV +85°=380mV
   ADMUX =  (1<<REFS0) |(1<<REFS1) | (1<<MUX3); //turn 1.1V reference and select ADC8  for atmega 328p
  #endif

  delay(5); //wait for internal reference to settle
  // start the conversion
  ADCSRA |= bit(ADSC);
  //sbi(ADCSRA, ADSC);
  // ADSC is cleared when the conversion finishes
  while (ADCSRA & bit(ADSC));
  //while (bit_is_set(ADCSRA, ADSC));
  uint8_t low  = ADCL;
  uint8_t high = ADCH;
  //discard first reading
  ADCSRA |= bit(ADSC);
  while (ADCSRA & bit(ADSC));
  low  = ADCL;
  high = ADCH;
  int a = (high << 8) | low;
  return a - 270; //return temperature in C , x1100/1024=1,074 ....
}

@smashteevee
Copy link

Thanks! Used your update to make it work for Attiny85

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants