Search found 139 matches

by Senacharim
Thu Oct 06, 2011 2:47 pm
Forum: General
Topic: RF Transceiver – Recommendations?
Replies: 15
Views: 11002

There are also "transparent" serial-to-bluetooth modules available which once configured pretend to be a 'wireless wire' and need no control from the PIC; just serial communication. I've used them myself and can vouch for their efficacy. A quick search for "serial bluetooth" or "rs232 bluetooth" wil...
by Senacharim
Thu Sep 22, 2011 2:48 pm
Forum: Compiler
Topic: Prompiler How To
Replies: 2
Views: 2085

Had to re-arrange some of the logic flows--but that's got it working correctly now. Thanks!
by Senacharim
Wed Sep 21, 2011 9:23 pm
Forum: Compiler
Topic: Prompiler How To
Replies: 2
Views: 2085

Prompiler How To

Hi! It's possible to use precompiler directives to test Const values and throw an #error if something is amiss, yes? I've got this statement: Const Valid_Click = 256 'this is for testing, normally the value is derived from _clock #if Valid_Click > 255 #error _ButtonHandler, "Debounce value is too hi...
by Senacharim
Mon Sep 19, 2011 3:04 pm
Forum: Compiler
Topic: USB dongle not recognized in VMWare virtual machine
Replies: 4
Views: 2969

I've been using Swordfish in a virtual XP for awhile now without any tribulations...

It may be the virtualisation software you're using--I'm using Oracle VM VirtualBox under Ubuntu and it has full USB support--once I got it set up correctly it's been zero effort and problem free.
by Senacharim
Mon Sep 19, 2011 3:01 pm
Forum: Compiler
Topic: Time Delay
Replies: 3
Views: 2685

Put an RTC clock chip with alarm function on your board, attach the alarm pin to on of the interrupt pins on your PIC, sleep PIC.
by Senacharim
Fri Sep 09, 2011 2:10 pm
Forum: User Modules
Topic: sd card problem
Replies: 1
Views: 2398

Are you certain your code is correctly interfacing with the clock module?

'0' is what one gets when the clock module is non-functional or communication is not being achieved.
by Senacharim
Tue Aug 30, 2011 2:29 pm
Forum: Modules
Topic: ADC readings are unstable!
Replies: 2
Views: 3100

Not sure what's going on with your setup, but here's an excerpt of my ADC code. This code has been serving me in good stead for a few years now. Note: the voltage flex number will vary depending upon certain conditions... 'Actual_V / ADC_Reading = _voltage_flex Dim VoltsBuffer(6) As Word #option _vo...
by Senacharim
Mon Jul 25, 2011 6:15 pm
Forum: IDE
Topic: DS30 Compatible Loader
Replies: 4
Views: 6346

USB bootloader would have to be huge as it must accomodate an entire USB stack in order to be functional...

For everything I've made, serial-port loading is perfect.
by Senacharim
Mon Jul 25, 2011 2:48 pm
Forum: IDE
Topic: DS30 Compatible Loader
Replies: 4
Views: 6346

I would LOVE to find some nice, small, easy to use bootloader code... I'll be watching that topic closely.

Thank you!
by Senacharim
Tue Jul 12, 2011 9:50 pm
Forum: General
Topic: some ideas
Replies: 7
Views: 4915

Sry, should read a little more into your original reply. I think so long as your sensor isn't too greatly modifying the electrical characteristics of the ignition then your proposed method should also work... of course you'll need to take steps to blunt the amperage of the ignition from ever reachin...
by Senacharim
Tue Jul 12, 2011 9:47 pm
Forum: General
Topic: some ideas
Replies: 7
Views: 4915

Oh!

If your hall effect sensor changes state rapidly enough, then it should be fairly straightforward to wire it to one of the interrupt pins on the PIC.

You'll need a clock or some method of guesstimating when 1 second and/or 1 minute have passed...

IMHO that should work fine.
by Senacharim
Tue Jul 12, 2011 6:02 pm
Forum: General
Topic: some ideas
Replies: 7
Views: 4915

Isn't there a built-in location for connecting an RPM sensor?
I'd think that would be an easier way to gauge speed...
by Senacharim
Wed Jul 06, 2011 3:08 pm
Forum: General
Topic: 18f26k80 with PWM
Replies: 15
Views: 9643

That works perfectly now! :) Thanks again to Jerry and David. on a side note:- This pic is only supported with the Pickit3 :( Are you sure about that? I've been playing with K-Series PICs for awhile now, burning the code in using the melabs U2 usb programmer (not to sound like an advert... sry). I ...
by Senacharim
Fri Jul 01, 2011 2:08 pm
Forum: Compiler
Topic: Float Garbage Data
Replies: 2
Views: 1988

Oh i see...

Thank you!! I had no idea.
by Senacharim
Thu Jun 30, 2011 6:11 pm
Forum: Compiler
Topic: Float Garbage Data
Replies: 2
Views: 1988

Float Garbage Data

I'd been attempting to write a routine which gives me the 'float length' (eg how many numbers trailing the decimal) and I appear to be suffering an aspect of the same(?) bug. '--------------------------------=-=--------------------------------------- Function FloatLen(pFloat As Float) As Byte '-----...