Share your working BASCOM-AVR code here : Poor man's Rolex.... : REPLY
Yes. It must be so: [code:1:c8f932c8dd]'------------------------------------------------------------------------------- ' lookup voor dag van de week...
View ArticleShare your working BASCOM-AVR code here : Poor man's Rolex.... : REPLY
[code:1:d1dfb714a2]For String_pos = 1 To Len(lcd_text) 'Für jedes Zeichen im String If Fontset = 2 Then Restore Font12x16 Else Restore Font8x12 End If Read Char_rows : Read Char_row_len : Read...
View ArticleBASCOM-AVR : XMEGA serial lost characters : REPLY
Hi Mark and all Guy, Sorry for the delay, but i was not in France and with very limited internet access. Yes, with small delay it's better, nearly 100%. but somme time one character is lost (now only...
View ArticleBASCOM-AVR : Random output pin toggling : REPLY
Plenty of ideas, but nothing you cannot get by just looking in the Help at the RND function, plus how to set a port for output and set a bit within the port. Suppose you want to use portX, bit Y as...
View ArticleBASCOM-AVR : XMEGA and 40*4 LCD : NEWTOPIC
Hi, I am trying my first attempt at XMEGA. I am using XMEGA256D3 I could do blinking LED. But can't make LCD work. The xmega is at 3.5 volt. LCD is at 5 volt. Will this work ? or must use level...
View ArticleBASCOM-AVR : Atmega128a and DataFlash : NEWTOPIC
Hi All! Is it possible to handle built in DataFlash of Atmega128a with BASCOM? [b:ceff1afdfe][color=red:ceff1afdfe](BASCOM-AVR version : 2.0.7.6 )[/b:ceff1afdfe][/color:ceff1afdfe]
View ArticleBASCOM-AVR Old versions : [ask] read sms in siemens c55 : REPLY
This does not use the print command ?
View ArticleBASCOM-AVR : data loss using inkey #2 with software UART : REPLY
Thanks for the explanation, :idea: yes, I checked the help, but this is not so crystal clear, because in the description of the syntax there is no mention of this parameter, only in the examples...
View ArticleBASCOM-AVR : True Type font problem! : NEWTOPIC
Hi i tried to used from font8x8tt.font for my ks108 LCD display. but it work same as font8x8.font . i want to define difference blank space for each character so i have to use from true type font....
View ArticleBASCOM-AVR : data loss using inkey #2 with software UART : REPLY
[quote:cd6f09c3bc="jwolf"]because in the description of the syntax there is no mention of this parameter, only in the examples section.[/quote:cd6f09c3bc] Would you point out the exact place to find...
View ArticleBASCOM-AVR Old versions : [ask] read sms in siemens c55 : REPLY
Hi, of cause it use print command this is this it the AT commands you need to use
View ArticleBASCOM-AVR : data loss using inkey #2 with software UART : REPLY
print and printbin have different purposes and different syntax. print was only extended with the , and an optional number of bytes, because it is required by the SPI. since it will not break code, it...
View ArticleBASCOM-AVR : Atmega128a and DataFlash : REPLY
maybe you can explain what you mean/want to do? you mean to read/write the flash code that is used to store the program?
View ArticleShare your working BASCOM-AVR code here : RHT03 (DHT22) Sensor : REPLY
in case of a problem : always store the complete project code. then when you think you found the problem, report it to support. if there really is a problem we would like to know about it to fix it....
View ArticleBASCOM-AVR : XMEGA and 40*4 LCD : REPLY
Hi, Of course, xmega (3v3) is not diectly compatible with LCD in 5V. i use some "translator" 74VHC1VT50 and it's works perfectly. In attachement a part of sheet of exemple. (sorry the wiring is to be...
View ArticleBASCOM-AVR : XMEGA and 40*4 LCD : REPLY
Thank you Patrick, This solved my first problem. That is I need a translator to convert my vcc (3.5 volt ) to 5 volt for LCD. I still require somebody to suggest about the 40 * 4 LCD library. Best...
View ArticleShare your working BASCOM-AVR code here : Decoding Sony Remote With Bascom...
you can use the loop : for I=1 to 7 Pulsein Ir_pulse(i) , Pind , 2 , 0 Next I new loop : for i=0 to 6 ' Pulsein Ir_pulse(i+1) , Pind , 2 , 0 If Ir_pulse(I) < 100 Then Dbyte.I = 0 end if next this...
View ArticleShare your working BASCOM-AVR code here : Decoding Sony Remote With Bascom...
Yes, that's very good and clever :). It did not come to my head.
View Article