View Single Post
Old 04-09-2007, 05:02 AM   #97
2k1Toaster
Fusion Brain Creator
 
2k1Toaster's Avatar
 
Join Date: Mar 2006
Location: Colorado, but Canadian!
Posts: 7,850
Quote: Originally Posted by h3rk View Post
Maybe timers. Like time delay relays.

Done. You can make it an "animation" with only 1 frame which would be on, and then have that frame repeat x amount of times. Each frame/iteration takes t seconds. t is user settable variable between 250ms and 1s which is the update frequency of the PIC. So if you want it on for 10 seconds then set 10/t is the number of iterations needed.

Is this too complicated for people? I figured it would be very easy once people understand it...

Quote: Originally Posted by h3rk View Post
If you press a button it will stay on for X seconds or or wont activate for X seconds.

You mean the digital input is fooled into thinking that the button is being pressed for x seconds when it is really only being pressed momentarily? This could cause havoc in my eyes. Why out of curiosity?

Quote: Originally Posted by h3rk View Post
outputs are tied to on_click events?

Not sure what you mean. Of course when you push the button for the digital output an onclick event is triggered and it changes the output next refresh cycle (250ms to 1s).

Quote: Originally Posted by h3rk View Post
What about triggering outputs to activate upon inputs

The temperature, photocell, and potentiometer can all do this. I dont see a need for the accelerometer other than to flash "Slow the F down crazy man" after like 10g's.

Quote: Originally Posted by h3rk View Post
or combination of input and button, which could be mapped with software.

Interesting... Definately implementable... What would the benefit of this be though? That would mean a button only works if the analog input is within specs... So no volume control while the accelerometer reads more than x g's? I dunno.

Good ideas. And I am not critisizing, I just want to see where the ideas lead. I am always interested in ideas!

Quote: Originally Posted by P3D4T0R View Post
Open source? A way to hack the firmware?

It will be open source.

Hack the firmware? If you want, we shall add!

But everything is done software side which is completely open source once we get it up and running.

Quote: Originally Posted by h3rk View Post
Trigger-able (alarm-like) events based on analog setpoint levels. For example, if battery voltage is low it could start the vehicle and recharge for either a prescribed time or voltage, assuming other prerequisites are met. Something that would allow a user to set something like that (or similar process) up. It'd be nice if the hardware had a wake-on-lan output for that however.

the PC must be on in order for the device to function. That way you dont have to shut it down when you leave. Neither of these are doable in the way you might want.

If the PC is on, car is off, then yes it could theoretically start the car, but the PC will drain the battery by being on, so sort of a viscious circle!

And the PIC makes no descisions such as interpretting a WOL signal. It only gets and sets the inputs and outputs and sends it to the PC to figure out. Sorry.

Last edited by 2k1Toaster; 04-09-2007 at 05:02 AM. Reason: Automerged Doublepost
2k1Toaster is offline   Reply With Quote