Search found 90 matches

by be80be
Mon Dec 20, 2010 10:59 am
Forum: Compiler
Topic: Usart removing 13,10
Replies: 9
Views: 4247

Would something like this work or am I even close

Code: Select all

Dim chars As Byte

SetBaudrate(br19200)

chars = USART.ReadByte() 

Select  chars
		Case 0
			'do nothing
		Case 13
			MoveCursor(2,1)
            LCD.Cls
		Case 27
			MoveCursor(1,1)
			LCD.Cls
		 Else
			LCD.Write(chars)
EndSelect

by be80be
Mon Dec 20, 2010 6:28 am
Forum: Compiler
Topic: Usart removing 13,10
Replies: 9
Views: 4247

Usart removing 13,10

I been playing with Usart want to send received data out to a lcd

It send it but i get junk to

So how would I get rid of the control terminator character

Code: Select all

SetBaudrate(br19200)
While true
   LCD.Write(ReadByte)
Wend
by be80be
Wed Dec 15, 2010 6:31 am
Forum: Modules
Topic: Help ISRRX.bas
Replies: 2
Views: 2129

Funny it's not in the help files with Usart

Thanks
by be80be
Wed Dec 15, 2010 5:53 am
Forum: Modules
Topic: Help ISRRX.bas
Replies: 2
Views: 2129

Help ISRRX.bas

Why are there not a help file for this ISRRX.bas
by be80be
Mon Dec 13, 2010 4:34 am
Forum: Modules
Topic: Usb not loading windows drivers
Replies: 1
Views: 1858

Forget this post There in the swordfish library I found them Thanks any way.

:D :D :D :D
by be80be
Mon Dec 13, 2010 4:12 am
Forum: Modules
Topic: Usb not loading windows drivers
Replies: 1
Views: 1858

Usb not loading windows drivers

I was trying out the samples for usb . Windows finds the cdcserial com
but it don't load drivers for it.
by be80be
Wed Dec 08, 2010 1:18 pm
Forum: Modules
Topic: LCD Module missing scrolling commands
Replies: 4
Views: 3249

There probable a reason for not using scrolling in LCD.bas They don't really scroll there shifting data memory and can get lost. I no that don't sound right but you can move the data like to far right or left and then write to the LCD and not get a update to the screen Because you move the start loc...
by be80be
Wed Dec 08, 2010 12:45 am
Forum: General
Topic: Registered User
Replies: 4
Views: 3812

LOL I just hope more will buy Swordfish I like it
by be80be
Sun Dec 05, 2010 4:48 pm
Forum: General
Topic: Registered User
Replies: 4
Views: 3812

Registered User

Registered User There a place to change to a Registered User
by be80be
Sun Dec 05, 2010 4:38 pm
Forum: Compiler
Topic: Cant get the decimal place on a lcd.
Replies: 12
Views: 5906

gramo wrote:
Jerry Messina wrote:If you declare 'biming' as a float, you can use a single call to convert.FloatToStr() to print the result
Only if you have a Image beside your name :wink:
I own swordfish but my profile didn't change
by be80be
Tue Nov 30, 2010 5:31 pm
Forum: Compiler
Topic: Swordfish built in functions
Replies: 3
Views: 2522

Like the coding that makes up

toggle(PORTB.0)

Bitof , low ,high

I just think it would help to see how they work. As code

Oh I love My swordfish just got the real deal from Core Electronics

Thanks for all your hard work David
by be80be
Tue Nov 30, 2010 3:21 pm
Forum: Compiler
Topic: Swordfish built in functions
Replies: 3
Views: 2522

Swordfish built in functions

It would be nice to be able to read the code for built in functions
by be80be
Sat Oct 09, 2010 4:54 pm
Forum: Compiler
Topic: Online Update
Replies: 28
Views: 14453

Where the best place to buy Swordfish in the US Thanks
by be80be
Sat Jul 17, 2010 3:37 am
Forum: Compiler
Topic: set internal oscillator problem
Replies: 4
Views: 3241

Maybe its calling it wrong The internal osc register is INTOSC. This is from the data sheet 2.6.1 INTIO MODES Using the internal oscillator as the clock source eliminates the need for up to two external oscillator pins, which can then be used for digital I/O. Two distinct configurations are availabl...
by be80be
Sat Apr 25, 2009 5:12 am
Forum: User Modules
Topic: Keypad on porta 18f1220
Replies: 0
Views: 3323

Keypad on porta 18f1220

I was trying to save the first 4 key presses I have the keypad module working on PortA It works find I put 8 leds on PortB and the value of the led is output to PortB It give the value 1 to 12 just like It should This is the thing if I test to see if the key pressed It doesn't keep but the las one. ...