Netduino home hardware projects downloads community

Jump to content


The Netduino forums have been replaced by new forums at community.wildernesslabs.co. This site has been preserved for archival purposes only and the ability to make new accounts or posts has been turned off.

tjfdownsouth

Member Since 20 Feb 2013
Offline Last Active Mar 22 2016 03:39 AM
-----

Topics I've Started

Radio Shack VC0706 TTL camera

05 April 2013 - 01:41 PM

Has anyone had any experience with this camera and the Netduino 2?  I assumed it worked similar to the adafruit camera here https://fabienroyer....ith-a-netduino/ but it doesn't seem to give any decent output.  Using the VC0706 code I can get it to drop file on my sd card but on my computer the file doesn't show as a jpeg.  The size is comparable to other jpeg's in the same range as 640x480 and 320X240.

 

Im kind of stuck since is acts like it operating as it should but the file output is not an image so any help or insite is appreciated.

 

Tim


Netduino 2 frozen

20 February 2013 - 03:33 AM

Before reading some forums i sent the following code to my device and now i can't get it to do anything.  I have tried holding down the button and plugging it in but it never shows up in mfdeploy.  I tried connecting 3.3v to gold plate but nothing changes.  the board boots up and turns on led2.  It shows in mfdeploy but if i ping i get Error: no reponse from devide.  I have tried everything I could find to reset it but haven't had any success right now any advice would be appreciated.

 

public static void Main()

{

// write your code here

//OutputPort led1 = new OutputPort(Pins.GPIO_PIN_D0, false);

PWM led1 = new PWM(Cpu.Pin.GPIO_Pin0);

OutputPort led2 = new OutputPort(Pins.GPIO_PIN_D1, false);

OutputPort led3 = new OutputPort(Pins.GPIO_PIN_D2, false);

InputPort button = new InputPort(Pins.ONBOARD_BTN, false, Port.ResistorMode.Disabled);

 

bool buttonState = false;

 

while (true)

{

buttonState = button.Read();

 

if (buttonState == true)

{

led1.SetDutyCycle(75);

led2.Write(true);

led3.Write(true);

Thread.Sleep(500); // sleep for 250ms

led1.SetDutyCycle(25);

led2.Write(false);

led3.Write(false);

}

else

{

led1.SetDutyCycle(25);

led2.Write(false);

led3.Write(false);

Thread.Sleep(250);

led1.SetDutyCycle(50);

Thread.Sleep(250);

led1.SetDutyCycle(75);

led2.Write(true);

Thread.Sleep(250);

led2.Write(false);

led3.Write(true);

Thread.Sleep(250);

}

}

}


home    hardware    projects    downloads    community    where to buy    contact Copyright © 2016 Wilderness Labs Inc.  |  Legal   |   CC BY-SA
This webpage is licensed under a Creative Commons Attribution-ShareAlike License.