Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
Member Avatar for florisvd

Hello, I'm making a scoreboard and I'm using multiplexing 7 segments. With a remote control I'm controlling the counting of the digits. I have two big problems with this. The first is that I can count just 2 times by sending b to the UDR. After that I have to …

0
77
Member Avatar for florisvd

Hello everybody, I'm making a scoreboard with uart and 7-segment multiplexing and I've got a problem. When I receive code from the UART, multiplexing doesn't work any more. And when I'm multiplexing with timer1, the UART_receive doesn't work any more. Please look at my code below and help me. Best …

Member Avatar for Banfa
0
96
Member Avatar for florisvd

Hello, The following exercise I have to make, but I've got no idea how to do it. Can anyone help me? Write a program in assembly in the ATmega32 AVR Studio which both following issue as a choice of the following commands worked out and resolved. Make sure there in …

Member Avatar for Kioulis
0
115
Member Avatar for florisvd

Hello, I´ve got a question about multiplexing 7 segment displays. I already have working 1 7 segment display. How can I control more 7 segment displays? Now only the 3th display can be controlled. This is the code I've made: #include <avr/io.h> #include <util/delay.h> #define F_CPU void delay_ms(uint16_t); void digit …

0
63
Member Avatar for florisvd

Hello, I´ve got a question about multiplexing 7 segment displays. I already have working 1 7 segment display. How can I control more 7 segment displays? Now only the 3th display can be controlled. This is the code I've made: #include <avr/io.h> #include <util/delay.h> #define F_CPU void delay_ms(uint16_t); void digit …

0
68
Member Avatar for florisvd

Hello, I've to make a c program with the next specs: Write a function that is specified as follows: bool lees_file (char *, int [] [KOLOMMEN_IN]); The function has as parameters a pointer to a file name and a two dimensional integer array and a return value of type boolean. …

Member Avatar for Ancient Dragon
0
206
Member Avatar for florisvd

Hello, We are trying to control 8 7-segment displays by using multiplexing. The problem we have is that we have to program buttons, how can we make it? Best regards, Floris /* Ansteuerung von drei 7-Segmentanzeige im Multiplexbetrieb * Gemeinsame Anode, PB0..PB6 * Spalten: PC0..PC2 * * a * f …

Member Avatar for florisvd
0
139
Member Avatar for florisvd

Hello, I'm trying to work with I2C and I have the following code: [code] #include <stdio.h> #include <avr/io.h> #include <util/delay.h> #include <compat/twi.h> #define I2C_START #define MAX_TRIES #define I2C_DATA #define I2C_STOP #define i2c_writebyte unsigned char i2c_transmit(unsigned char type) { while (!(TWCR & (1 << TWINT))); return (TWSR & 0xF8); } { …

Member Avatar for florisvd
0
2K