Search found 164 matches

by Steve
07 Jun 2006 21:18
Forum: mikroBasic General
Topic: Can someone recommend an IC for wireless communications
Replies: 10
Views: 5986

I have had good luck with the Laipac TRF-2.4G. You can get them from Quality Kits.

These modules are on the (Supposedly) worlwide licence free frequency of 2.4GHz and can transfer data up to 1MB/s.
by Steve
06 Jun 2006 17:38
Forum: mikroBasic General
Topic: problem with C code for ATTiny2313 with DS18B20
Replies: 2
Views: 6323

I have noticed that no one has replied to you (And probably won't). Unfortunately, you have posted your query to a BASIC forum (and also for Microchip PIC's). It is fairly unlikely that anyone here could help you. All I can really advise is that you find a forum for your particular microcontroller a...
by Steve
06 Jun 2006 17:25
Forum: mikroBasic General
Topic: Keyboard on the pic16f876
Replies: 1
Views: 1958

I don't have a keypad but I have looked through your code. You have declared "kp" as byte type but, according to the MB manual, the keypad_released function returns a word type. You may be overwriting memory causing strange results. Again, you declare "cnt" as byte and then use it as a parameter to ...
by Steve
04 Jun 2006 18:47
Forum: mikroBasic General
Topic: one wire schematic circuit
Replies: 1
Views: 1962

Just hook it up exactly the same as the DS1820 in the 1-wire example in the MB manual.

Note that the DS1990 does not have a Vdd connection so hook up the IO connection to +5V with a 4K7 resistor and to whichever pin on the PIC you with to use for 1-wire comms.
by Steve
01 Jun 2006 16:14
Forum: mikroBasic General
Topic: strcat help.
Replies: 3
Views: 2293

Your problem is in the loop where it is waiting for the temperature conversion to complete... j1 = 0 ' Wait for temperature conversion to complete while j1 = 0 Delay_ms(25) j1 = Ow_Read(vPort,vPin) wend You need to initiate a read time slot before you start reading from the DS1820 otherwise the loop...
by Steve
30 May 2006 21:58
Forum: mikroC General
Topic: need help on USB com. using PIC18F4550...
Replies: 2
Views: 2615

You may like to check into the FTDI chips/modules . These things make hooking up your working USART based project real easy. They include royalty free drivers for Windows, Linux and MacOS. AFAIK writing a USB device driver is a bear but hook up one of these modules and you are good to go :wink: [/url]
by Steve
22 May 2006 22:46
Forum: mikroBasic General
Topic: SOFTWARE UART
Replies: 7
Views: 4526

Early Bird - I don't think you understand what Soft_Uart does. It is the MB way of bit-banging a serial port. You can bit-bang any pins you like without needing a hardware USART on the PIC. This is how it was done before PIC's had built-in USART's. These bit-banged pins can then be routed through a ...
by Steve
22 May 2006 22:04
Forum: mikroBasic General
Topic: Help with code
Replies: 1
Views: 1830

I can see two obvious errors in your code. The first is your "endof" variable. You set it to 555 but as it is a byte type it can only have a maximum value of 255. Secondly, you create 65 character strings then try to write to the 66th character (Remember that the first character is located at positi...
by Steve
28 Dec 2005 05:55
Forum: mikroPascal General
Topic: Array Problem (Part II)
Replies: 3
Views: 3030

I wonder whether the compiler is getting screwed up because "Index" is a byte type but the maximum value that could be used (300) exceeds the maximum value that a byte type can have (255).

Maybe you could try making "Index" a integer type and check?
by Steve
24 Dec 2005 18:29
Forum: Website & Forums General Discussion
Topic: TAXes and DUTIes
Replies: 1
Views: 3214

It is up to your county's customs service whether you will be charged duty or tax. You will have to wait for a letter from your customs service. The tracking number you have can be taken to your local post office. They should be able to tell you if it is with customs or not. I know, in Australia, th...
by Steve
18 Dec 2005 06:55
Forum: mikroBasic General
Topic: Accurate pulse generation
Replies: 12
Views: 6668

PS As for those stepper boards, Steve mentioned: to do work but are quit expensive! The PIC board plus the stepper drivers IC are cheaper than those stepper boards (at least for 3 axis). True but I like the fact that they have been tested and debugged. If I can find something that does what I need ...
by Steve
18 Dec 2005 06:40
Forum: mikroBasic General
Topic: MMC FAT problem
Replies: 6
Views: 3722

Well, that was wierd. I thought I had the latest manual but I downloaded the latest one just in case. When I first opened it, it had the same construct for Mmc_Fat_Assign as in my first post. I closed the file and re-opened it and lo and behold it changed to the way you have it. Just plain wierd. So...
by Steve
17 Dec 2005 07:51
Forum: Development Boards
Topic: PCB Layout Software
Replies: 29
Views: 17575

Yep, I'm pretty sure it's 4.1.5.

You can make some pretty awesome boards in 100 x 80 mm. Maybe one day I'll upgrade but for what I'm doing, it's plenty.
by Steve
17 Dec 2005 01:25
Forum: Development Boards
Topic: PCB Layout Software
Replies: 29
Views: 17575

I have to agree - Eagle is the way to go. I must admit that it was a bit intimidating at first but if you work your way methodically through the tutorial and manual you will soon grasp it.

All the others I tried (And I think I tried them all) were actually more difficult in the end.
by Steve
17 Dec 2005 01:18
Forum: mikroBasic General
Topic: MMC FAT problem
Replies: 6
Views: 3722

I have not used the MMC Fat library but reading the manual I see the Mmc_Fat_Assign routine is described... sub procedure Mmc_Fat_Assign(dim byref filename as char[11]) But you are using it... file = Mmc_Fat_Assign(filename, 1) ' Create the file, if not found What is the second parameter doing there...

Go to advanced search