I2C on the ATtiny85

select "ATtiny85 @ 8 MHz" then execute "Burn Bootloader".

Ive tried that, but I get errors. (Perhaps it's best I PM you on them, or start another thread.)

In any case, I managed to set the fuses properly using Avrdude. (Every evening this week I found myself being drawn deeper and deeper into the dark side. :cold_sweat:) So now I am able to test the libs with both cores at both 1MHz and 8MHz.

I wonder if anyone else has tried these libs yet.

Sorry it took me so long to get back to you, it's been a hectic week around here.
I got all set up with the scope this morning and the 4.9k resistor pull-ups, and the scope picture was perfect so I plugged in the digipot (which controls a fan pwm controller) and it worked perfectly too!

So either A) 3.9k resistor pull-ups do not work, or B) I didn't have them all the way inserted into the breadboard.
In any case, you code is working perfectly for me, thanks! (I made no changes in software/firmware/sketch/etc)

Sorry if I cause you mental issues with my screwup!

Blink seems to be running the right speed for me, for whatever that is worth.

Aces! Great to hear. Thanks!

bHogan,

I'm going to give this a try with attiny85 as i2c slave. Has anyone tried to implement onReceive and onRequest? Is there any fundamental reason why this would not work on attiny85?

Thanks for the work to date,
George

Is there any fundamental reason why this would not work on attiny85?

I don't think there is. It was just a bit over my head so I didn't take the time to do it.

If you add those, let me know and I'll update the libs I put on the Playground.

Posting in this old thread because this is the google top entry for attiny85 i2c and the question is relevant.

Does anyone know how to change the slave address for an Attiny?

The default appears to be 0x26 from the TinyWireS library code but i've been looking in the attiny85 datasheet and cannot find where it's specified nor how to change it (because I don't know what to look for).

I want to change it to allow me to connect to two (or more) Attiny85's.

You set the slave address in your sketch with the .begin -

#define I2C_SLAVE_ADDR 0x26 // i2c slave address (38)
TinyWireS.begin(I2C_SLAVE_ADDR); // init I2C Slave mode

Thanks.

I was actually most of the way through determining it for myself :slight_smile:

For anyone interested in I2C for the attiny and other atmel AVR mc's the atmel here's what I've found.

The atmel application notes can be found here http://www.atmel.com/products/microcontrollers/avr/tinyAVR.aspx?tab=documents

Scroll down and look for Application notes AVR310, AVR311, AVR312 and AVR315 and have a read. It's in here that I found the specification for the pullups, the C commands and process flow diagrams.

My determination is that to connect to multiple attiny85 slaves you skip the define and specify the address you want in the TinyWireS object begin method calls for each attiny you want to slave (or use multiple defines).

From what I could determine there is no default address, it's all in the initialisation (the begin function)

My determination is that to connect to multiple attiny85 slaves you skip the define and specify the address you want in the TinyWireS object begin method calls for each attiny you want to slave (or use multiple defines).

From what I could determine there is no default address, it's all in the initialisation (the begin function)

Ah yea. It looks like what you determined pretty much agrees with my post above. That's nice.

Hello,

Do you know if the TinyWire library also supports the ATtiny84? Thank you very much.

Pedro Santos

i want to use the DS1307 with the attiny85 but i cant understand the example you provided. can you tell me how i can get the seconds, minutes and hours in to individual integers.

Pedro_Santos:
Do you know if the TinyWire library also supports the ATtiny84? Thank you very much.

Yes, I have had success running on an ATtiny84.

tigerbomb8:
i want to use the DS1307 with the attiny85 but i cant understand the example you provided. can you tell me how i can get the seconds, minutes and hours in to individual integers.

Attached is the code I use to connect the DS1307 and a dfrobot I2C LCD to the attiny85 at 8mhz internal.

10k pullups on the SDA and SCL lines.

The base DS1307 code I got from tronixstuff. My liquidcrystal I2C library is modified to handle the DFrobot display. Other displays can have significant variations in function so the display part won't work for you straight up.

clock_i2c_lcd.zip (2.22 KB)

hey when verifying the example code i get this error "C:\Users\Owner\Documents\Arduino\libraries\TinyWireM\USI_TWI_Master.cpp:329: error: 'USIPF' was not declared in this scope"

how do i fix this
and what do i need to change to run it at 8MHz

There's a good chance you have arduino version issues and attiny core issues.

The reference you're missing is in the following file in my arduino environment.
\hardware\tools\avr\avr\include\avr\iotnx5.h

I'm using the Google Code Archive - Long-term storage for Google Code Project Hosting. core exclusively now after encountering far too many issues burning fuses and general compiling with the high-low tech core.

I also followed coding badly's instructions for updating the AVR core and editing some of the files to get my environment correct first. Subsequently I have a hybrid 0022/1.0 arduino environment.

Unfortunately getting the environment correct is the first step. Setting yourself up to burn the fuses to 8mhz is a good first goal. If you can successfully do that you're environment should be right from then on.

Search the forum for attiny85 and 8mhz and you'll get there.

thanks for the help i will get on to it now.

I'm using a ATtiny85 using a Arduino Duemilanove as an ISP. The cores i'm using are located here: Google Code Archive - Long-term storage for Google Code Project Hosting. ... i believe it's being referred to as the "google" cores.

I'm trying to communicate with 4 blinkm's over i2c using a ATtiny85 and the TinyWireM lib. I've already been able to do this using my Arduino to communicate over i2c with these blinkm's with the builtin Wire lib and everything works ... so I know that the blinkm's are functioning properly.

My code is here: gist:dae96d4658745cd966ec · GitHub ... It seems that the "change color" command is making it to the blinkm's but not the "stop script" command.

If anyone can help me out that'd be greatly appreciated.

Do you have pull ups on the I2C lines?

yes I have a 4.7K on pins 5 and 7. i've also re-fused the attiny85 back to 1mhz instead of 8mhz.

Hi, I've read you're article in playground and i try to use TiniWireS to communicate with my AtTiny85 to an ArduinoUNO.

I've no problem to send from the Master (Arduino) and receive something from Slave. But when i use the function TinyWire.send(x), where x is 'byte' i can't see anything on the Arduino. If i try with Wire.available() it returns 'FALSE'

I'm sorry for my elementary english, i hope you can understand my problem.
Someone could help me?

Andrea