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's Content

There have been 10 items by tjfdownsouth (Search limited from 27-April 23)


By content type

See this member's

Sort by                Order  

#48202 Radio Shack VC0706 TTL camera

Posted by tjfdownsouth on 09 April 2013 - 03:45 AM in Netduino 2 (and Netduino 1)

I think I figured it out I added some thread.sleep statements in the read functions and it started outputting a picture. I guess the little camera is not nearly as fast as the netduino.



#48065 Radio Shack VC0706 TTL camera

Posted by tjfdownsouth on 05 April 2013 - 01:41 PM in Netduino 2 (and Netduino 1)

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




#46118 Netduino 2 frozen

Posted by tjfdownsouth on 23 February 2013 - 12:10 AM in Netduino 2 (and Netduino 1)

I seen the different link to get dfuse in 4.2.2 and used the version 3.0.2 and everything is working now.  Thanks for your help I had to get all the correct versions installed and it worked correctly after that.

 

Thanks,

Tim




#46011 Netduino 2 frozen

Posted by tjfdownsouth on 21 February 2013 - 10:34 PM in Netduino 2 (and Netduino 1)

Is it possible that i am not using the correct version of dfuse?  The link in the firmware update page did not work so I had quite the chore tracking down the version I have.

 

Thanks,

Tim




#45921 Netduino 2 frozen

Posted by tjfdownsouth on 20 February 2013 - 09:21 PM in Netduino 2 (and Netduino 1)

Thanks Chris, I tried it again and verified I was in the "Upgrade and verify" pane but still ended with same result.  I have attached a dfuse pic.

 

Thanks,

Tim

Attached Thumbnails

  • Dfuse1.jpg



#45911 Netduino 2 frozen

Posted by tjfdownsouth on 20 February 2013 - 04:02 PM in Netduino 2 (and Netduino 1)

Ok I finally found the driver and it will now show up in the stdfu software.  I did the steps to flash the firmware but after the demonstration program completes and I unplug and reconnect the board both lights stay on and it doesn't show in device manager.




#45910 Netduino 2 frozen

Posted by tjfdownsouth on 20 February 2013 - 03:36 PM in Netduino 2 (and Netduino 1)

If I hold the button and plug it in it shows in the device manger under other devices as stmf32bootloader.  I tried reinstalling the sdk but apparently i am still missing a driver somewhere.




#45906 Netduino 2 frozen

Posted by tjfdownsouth on 20 February 2013 - 03:09 PM in Netduino 2 (and Netduino 1)

I installed the stdfu tester but i could not get it to recognize the board.  I tried it holding the button and plugging it in and by just plugging it in.  I did not go any farther down the list since i couldn't get it to erase at this step.  Should it show in the drop down device box?




#45903 Netduino 2 frozen

Posted by tjfdownsouth on 20 February 2013 - 02:33 PM in Netduino 2 (and Netduino 1)

I have tried everything i could find on here.  If i hold the button and plug it in it never shows in device manager it just sits there with both led lights on.  if i just plug it in it shows in device manager but is doesn't reply to anything that mfdeploy sends it.  I have tried catching is as it boots and erase it.




#45867 Netduino 2 frozen

Posted by tjfdownsouth on 20 February 2013 - 03:33 AM in Netduino 2 (and Netduino 1)

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.