Yet another Volume controlers and source selections

dear Danzup,

could you send me the direct for the compiler. I have the Genius G540 programmer
does this work..
You can download both archive files from post #18 and post #25 !
In post #25 there are the .hex files for the firmware with stop at +31.5dB .
I do not know that programmer , but I will read the docs of your Genius G540 programmer to see if it has capability of programming Atmel Atmega8515 .
 
Danzup,

sorry, for all i'm new in al of this. have some minor experiance in only solder
it seems that bascom can't compile is not free to use only 4k source so i must buy this
witch is the best to buy?

Thanks for all.
There are only one variant to buy : Bascom AVR .
Again : you can write the firmware (.hex) without problems and you do not need Bascom ! With pony-prog or another like this .
With free Bascom (that one with limit to 4Kb) you can program the chip from atmel if your programmer is supported by Bascom AVR .
Only if you want the firmware to be edited / modified by you , if you know Bascom language !
Download the firmware from post nr #25 and write to Atmel 8515 !
Do not forget to program also fusenit :"Internal RC 8Mhz oscillator "
 
Last edited:
Dear Danzup,

i have made a hardcopy of the setting for the programmer
i don't no what to select. I have program the 8515 as you say
load the HEX file and program. I only see in the first line
bars on the LCD nothing else check every wire but can not find
any wrong connection. does you software check everything like pin 16 on the processor must be connected.

hereby a hardcopy
 

Attachments

  • G540 programmer.gif
    G540 programmer.gif
    44.4 KB · Views: 1,311
Dear Danzup,

i have made a hardcopy of the setting for the programmer
i don't no what to select. I have program the 8515 as you say
load the HEX file and program. I only see in the first line
bars on the LCD nothing else check every wire but can not find
any wrong connection. does you software check everything like pin 16 on the processor must be connected.

hereby a hardcopy

Read the 8515 (not the fusebits ! ) with your programmer and put here a print screen please .
 
dear Danzup,

i have borrow an PIC programmer for the winPIC-800
could you me the fusebit settings see picture

Ok here are the fusebit that must be altered :
CKSEL 0 = selected
CKSEL 1 = selected
CKSEL 2 = not selected
CKSEL 3 = selected
selected means there be that sign "checked"
-------------------------------------------------------------
After the fusebits been programed please check connection between LCD and atmega8515 to be exactly as in schematics .
You have something wrong on those lines .
Also please check the contrast potentiometer , begin with cursor at the ground and slowly go to the other extreme .
Also connect and press the on/off switch as my program get in the power off mode after you power the circuit .
Waiting for your input .
 
Disabled Account
Joined 2010
danzup,

nice job, i want to build the one with LED.
I see only the sources for the LCD not for the LED
or can I use the same BAS files for both.

How do you indicatie the input source on the LED?
does it work in every RC5 remote control?
I have an tube preamplifier with a potentiometer of 22k, can I use this design?
I take 60 sec. to warm up the tubes is it possible to change that?
I prefer the Matrix displays is this also possible?
 
danzup,

nice job, i want to build the one with LED.
I see only the sources for the LCD not for the LED
or can I use the same BAS files for both.

How do you indicatie the input source on the LED?
does it work in every RC5 remote control?
I have an tube preamplifier with a potentiometer of 22k, can I use this design?
I take 60 sec. to warm up the tubes is it possible to change that?
I prefer the Matrix displays is this also possible?

Here are the bin and hex for LED . The .bas files are not in archive .
You must try the ir remote to find the one that work with controller .
When you press the menu button the LED display flash and display from 1 to 4 input then after 30 secs flash again and change automatically to display volume again .
Firmware for tube is different that that for SS so this firmware must be used only for tube variant.
I do not have a matrix variant .
 

Attachments

  • atm16_shunt_r_2r_LED_v1_tube.zip
    16 KB · Views: 288
Disabled Account
Joined 2010
danzup,

can you explane what happen on the display does it count 60 sec back or what?
the remote control voor LCD is easier according to the post is it difficult to build this also for the LED? I have two remote control of Philips that mean i must have more?

because LED is very simple how can you see witch input you have select?
 
Here are the bin and hex for LED . The .bas files are not in archive .
You must try the ir remote to find the one that work with controller .
When you press the menu button the LED display flash and display from 1 to 4 the input selected then after 30 secs flash again and change automatically to display volume again .
Firmware for tube is different that that for SS so this firmware must be used only for tube variant.
I do not have a matrix variant .
Yes it is counting from 70 sec down after power on to wait for tube to heating .
 
Last edited:
Bar Graph

Hi
Here is my bar graph version

Dim I As Word
Dim Cols As Word
Deflcdchar 0 , 32 , 32 , 32 , 27 , 27 , 32 , 32 , 32 ' empty symbol
Deflcdchar 1 , 32 , 32 , 31 , 31 , 31 , 31 , 32 , 32 ' filled symbol
Declare Sub Bargraph
...
...
...
'-----Bar graph------
Sub Bargraph:
Cols = L / 17
Locate 1 , 1
For I = 1 To Cols
Lcd Chr(1)
Next I
For I = Cols To 14
Lcd Chr(0)
Next I
End Sub
 

Attachments

  • IMG_9432.jpg
    IMG_9432.jpg
    301.7 KB · Views: 969
  • IMG_9433.jpg
    IMG_9433.jpg
    305.9 KB · Views: 935