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.

Larsey

Member Since 18 May 2012
Offline Last Active Jun 12 2015 09:29 PM
-----

Topics I've Started

Manchester decoder for Netduino?

27 December 2014 - 07:40 AM

Hi!

 

I've been googling and getting to much arduino related results, so I turn to the forums In hopes of someone who knows about receiving manchester coded data.

 

I'm working on a project where I send data from an arduino, and the only way I got that to work was using the Manchester coding on the arduino. My Netduino with its receiver is getting a ton of bytes each time the arduino sends som data, but the data is encoded and I need to decode it on the netduino :-)


Unable to deply project, device not found or cannot be opened

20 December 2014 - 08:22 AM

It's been a while since I last did something fun with my Netduino. I bought a Arduino and I thought I could try to get them to communicate with each other, the only problem is that I cant deploy anything to my Netduino 2.
 
When I try to deploy something, VS2013 states: 
 
Error 1 Device not found or cannot be opened - USB:Netduino

 

 
 
I've got the following installed:
 
- Microsoft .NET Micro Framework SDK 4.3 (SDK-R2-Beta)
- Netduino SDK v4.3.1 (November 2014)
- Visual Studio 2013 extension
 
Does anyone have a clue?

ATTiny85 talking to Netduino?

30 June 2014 - 06:48 AM

I've run out of options, so I'm wondering if someone here has made a successful project where a ATTiny85/84 talks to a Netduino over serial?

 

My motivation for trying this, and not going for a Netduino mini is that the Attiny85 is silly small, has the right a mouth of pins and is cheap. The power consumption is ultra low, making it runable on batteries.

 

I've already tried over at the Arduino-camp, but it's like they are allergic to Netduino or something :P. So I hope someone here has some experience with Arduino/ATTiny to give me some hints. I have the following "sketch":

#include <SoftwareSerial.h>

const int rx = -1;
const int tx = 3;

SoftwareSerial serial(rx, tx);

void setup() 
{ 
  pinMode(tx, OUTPUT);
  serial.begin(2400);
} 

void loop() 
{ 
  String data = "Hello World";
    
  for(int k = 0; k < data.length(); k++ )
  {
    serial.write(0xAA);
    serial.write((byte)data[k]);
  }
  
  serial.write(0xA9);
  
  delay(1000);
}

This should be the same as the C# from my post http://forums.netdui...odules/?p=58949

 

But I have no clue if this works or not :-/

 


Netduino Weatherstation

25 June 2014 - 06:02 PM

Over the past weekend I've finished my latest project: Netduino Weatherstation. You can read all about it on my blog.

 

I connected some different sensors that I had and made the Netduino talk to my Windows Phone. No need to step out of the house, or even out of bed to check the weather :-)

 

wp_20140625_005.jpg?width=281.6901408450

 

Maybe someone can comment why it works with my 5V 1A 2200 mah power bank, USB also delivers 5V so I figured it could work but brownouts could be a problem?


Hygrometer for the Netduino

22 June 2014 - 05:36 AM

Hey all!

 

Just wanted to publish my Sunday morning project, my wife is going to love it when she wakes up! :-)

 

As described in my blogpost it was quick and simple, where most of the code is setting up the LEDs... lol. I'll put the link below:

 

http://blog.fagerbak...r-for-netduino/

 

wp_20140619_005.jpg?width=281.6901408450


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.