-
Notifications
You must be signed in to change notification settings - Fork 14
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
Sample #1
Comments
Have a look here: http://github.com/eriksl/attiny861_1 What are you making? |
Hi Erik,
i want to control a led, and learn about avr programming. the address of my slave should be 0x55 and the commands are: 0x01 : led on 0x02 : led off
But nothing is working.
In the link at bottom, you can find my testproject
If you can help me get this working, i would be very glad.
Joern.
|
Hi Erik, i post it here.
|
The first thing that comes to my mind is wrong i2c address. The adress Otherwise are you sure that the electrical part is correct, pull up I've found out the internal pull up resistors of the attiny861 are not Are you sure you program is even run? How about a second led that #include <avr/delay.h> DDRB = _BV(3) | _BV(4); main() |
Hi Erik,
is it possible to provide a small sample, where this lib is included ?
Klaus
The text was updated successfully, but these errors were encountered: