BASCOM-AVR : Problem with lcd and ATMEGA2560 : NEWTOPIC
Hi. I have a problem with displaying data on lcd (HD447800). I wrote a short program on the ATmega2560, unfortunately, instead of text on LCD display strange stamps. The layout is correct, lcd too. I...
View ArticleBASCOM-AVR : m128 pwm problem : REPLY
[quote:119724e880="apam"]I2creceive &HA3 , Tm(1) , 1 , 7[/quote:119724e880] Looks like an array overflow, if Tm() is dimensioned too small. Otherwise, show some complete code, so one don't has to...
View ArticleBASCOM-AVR : m128 pwm problem : REPLY
Hi, And what happens if you split the i2crecieve command into it's individual steps:- [code:1:a877162e40] I2cstart 'start condition I2cwbyte Address 'address,rw bit set If Err = 0 Then 'hardware error...
View ArticleBASCOM-AVR : Any Port of Arduino CapSense library to Bascom-AVR : REPLY
[quote:63e0ffda02="rabiuls"]I tried to adopt the Arduino's CapSense library for Bascom-AVR.[/quote:63e0ffda02] It's often easier to write own code, as one gets a better understanding then how things...
View ArticleBASCOM-AVR : Any Port of Arduino CapSense library to Bascom-AVR : REPLY
Thank you MWS for the suggestion. I shall again try the ElmChan code to understand. The calibration part I removed, because I did not put much attention to it, as I think it is not much important for...
View ArticleBASCOM-AVR : LCD Menu - Inverse text : REPLY
Hi everyone I tried with GLCD 240*128 (T6963) + Atmega128 but it didn't work well: the font could not change, not invert, I used Evert's code on his website but it's still the same problem....
View ArticleBASCOM-AVR : LCD Menu - Inverse text : REPLY
T6963 has an internal font generator. It would require a new driver to use custom fonts. Everts code should work fine. But before using that, test if PSET will work. In all cases i first advise to...
View ArticleBASCOM-AVR : Problem with lcd and ATMEGA2560 : REPLY
did you connect WR of LCD to ground?
View ArticleBASCOM-AVR : LCD Menu - Inverse text : REPLY
[quote:0647f44683="albertsm"]T6963 has an internal font generator. It would require a new driver to use custom fonts. Everts code should work fine. But before using that, test if PSET will work. In...
View ArticleBASCOM-AVR : m128 pwm problem : REPLY
Thank you for the answers. I can't put the whole code here because it's more than 4000 rows but I can here to give part of the i2c code that reads the time from pfc8563T. [code:1:728d746361] ... Dim S...
View ArticleBASCOM-AVR : m128 pwm problem : REPLY
I'd still suspect an array overrun. Your use of overlay I would not recommend also, let the compiler do the job: [code:1:255918d001]Dim Tm(7) As Byte Dim S As Byte At Tm(1) Overlay Dim M As Byte At...
View ArticleBASCOM-AVR : experience whith YAMAHA YM2314 sound synthesiser chip? : REPLY
Interesting chip indeed, maybe this schematic will help: http://theliaos.myweb.hinet.net/dsplab/doc/prj03/Music51_Host_Download_1.jpg Best regards Jure
View ArticleBASCOM-AVR : m128 pwm problem : REPLY
MWS the same as before the modification. report attached
View ArticleBASCOM-AVR : experience whith YAMAHA YM2314 sound synthesiser chip? : REPLY
Hi Jure, thank you for your hints. It seems there is a project for YM2413 (thanks for correction) running. Beside the schematic there must be some code ... however my Japanese isn't good enough by...
View ArticleBASCOM-AVR : m128 pwm problem : REPLY
Brought the report in a more legible format, however I do not see overlaps. What I'd suggest, is to place a dummy buffer dbuf(32) As Byte immediately after declaration of TM(7), to eliminate a memory...
View ArticleBASCOM-AVR : LCD Menu - Inverse text : REPLY
Hi everyone. My program was solved, it had some problems with my code. Now its working well with Evert's code, but when I want to indicate a single variable on Glcd, and it's so complicated to convert...
View ArticleBASCOM-AVR : LCD Menu - Inverse text : REPLY
it's Not so complicated to convert from single variable to string see CONFIG SINGLE in help [code:1:d131f9233c]Dim My_string as string*16 , my_single as single CONFIG SINGLE = SCIENTIFIC , DIGITS = 3...
View ArticleBASCOM-AVR : m128 pwm problem : REPLY
Thanks for the information, I just found out that it does only in the 47 minute any hours.
View Article