Microsoft .NET Gadgeteer is an open-source toolkit for building small electronic devices using the .NET Micro Framework and Visual Studio or Visual C# Express.
Questions tagged [.net-gadgeteer]
24 questions
33
votes
1 answer
Pair bluetooth devices to a computer with 32feet .NET Bluetooth library
If you want to know how to use 32feet.NET library to communicate with bluetooth devices, read the solution
I am currently trying to communicate via bluetooth between a computer and a self-built .NET Gadgeteer prototype.
The Gadgeteer prototype…

xmashallax
- 1,673
- 1
- 17
- 34
28
votes
4 answers
What is the difference betweet Netduino and .NET Gadgeteer?
I wanted to learn .NET Microframework and found that there is (among others) Netduino which is somehow compatible with Arduino. Recently .NET Gadgeteer came to public. There was a lot of enthusiasm, so it looks like important step for .NET…

stej
- 28,745
- 11
- 71
- 104
5
votes
1 answer
Possible to use the Microsoft Kinect with .NET Gadgeteer?
Based on what's public, is it possible that someone can interact with the Kinect with the .NET Gadgeteer?
What (if anything) probably needs to be done to the drivers?
If you're interested, here is a Channel9 video that shows you how to use VS2010…

makerofthings7
- 60,103
- 53
- 215
- 448
5
votes
1 answer
What is the correct service definition for a Bluetooth LE (Smart) Coffee maker?
I want to build an IOT (Internet of things) device using the Bluetooth Smart protocol / GATT. I'm a bit confused how I'd make this conform with the BLE specs. All the profiles listed seem to focus on health-stuff and I'm having trouble making the…

makerofthings7
- 60,103
- 53
- 215
- 448
3
votes
3 answers
Netduino or Gadgeteer running IIS and ASP.NET MVC
Is it possible to deploy ASP.NET MVC3 applications onto either a Netduino or .NetGadgeteer? If so how would I go about such a thing?
What I want to do is have a Netduino, connected to a wifi router, that will host an MVC web app.

Anish Patel
- 4,332
- 1
- 30
- 45
3
votes
1 answer
.NET: Reading data from serial port
I am reading data sent to a serial port (that is, COM3) using code like this:
_serialPort.PortName = "COM3";
_serialPort.BaudRate = 9600;
_serialPort.Parity = Parity.None;
_serialPort.DataBits = 8;
_serialPort.StopBits =…

mike01010
- 5,226
- 6
- 44
- 77
2
votes
2 answers
Restarting Camera.StartStreamingBitmaps after Camera.PictureCaptured
I have a .Net Gadgeteer camera app that streams bitmaps from the camera to a screen. On the press of a button it stops streaming the bitmaps from the camera, takes a picture, writes it to SD card, and then restarts the streaming. Here's a simplified…

dumbledad
- 16,305
- 23
- 120
- 273
2
votes
1 answer
Crypto with Key & IV generator from a password and SALT in .NETMF
I am implementing a .NET Micro Framework application and I have a code such as:
public static void Main()
{
string data = "Here is some text to encrypt.";
AesCryptoServiceProvider csp = new AesCryptoServiceProvider();
…

stratovarius
- 3,720
- 1
- 30
- 26
2
votes
2 answers
Convert int32 to string in base 16
I'm currently trying to convert a .NET JSON Encoder to NETMF but have hit a problem with Convert.ToString() as there isn't such thing in NETMF.
The original line of the encoder looks like this:
Convert.ToString(codepoint, 16);
And after looking at…

Infiniti Fizz
- 1,726
- 4
- 24
- 40
1
vote
1 answer
.net gadgeteer web event not firing. Getting no response from web server
This is the code below.
using System;
using System.Collections;
using System.Threading;
using Microsoft.SPOT;
using Microsoft.SPOT.Presentation;
using Microsoft.SPOT.Presentation.Controls;
using Microsoft.SPOT.Presentation.Media;
using…

Abdi Getachew
- 75
- 2
- 9
1
vote
1 answer
Set up web server connected via Ethernet. IPaddress gives 0.0.0.0
This is the code I got from a book called Getting started with .net gadgeeter. Whenever I print the Ip address it's 0.0.0.0 even though I can see that it's connected to my network and has an IP address. What am I doing wrong?
namespace…

Abdi Getachew
- 75
- 2
- 9
1
vote
1 answer
.NET gadgeteer something worth learning?
Is this something worth learning, just as a side thing, or is this something that may not be widely used or around much due to other things like andruino?
EDIT: I am asking this question to those individuals who have used gadgeteer. Not to see if…

iCobot
- 175
- 15
1
vote
1 answer
How to use the headphones jack to send data to a circuit board in WP7 or WP8
I just wanted to know if there is a way to send data through Headphones Jack to a circuit board like arduino or a custom circuit board that handles serial communication or something like that.

csharpwinphonexaml
- 3,659
- 10
- 32
- 63
1
vote
1 answer
ToString(format) which ones are available in the micro framework
I just want to make sure that at a minimum my digits are displaying with 2. So 1 should display as 01.
I need this for time display XX:XX.XX
Formats I have tried but all of them seem to throw an error
"D2",
"D5",
"00" (Custom )
…

Cubicle.Jockey
- 3,288
- 1
- 19
- 31
1
vote
1 answer
Gadgeteer and SPI protocol (Digital potentiometer)
I'm trying to create a project that will allow me to control digital potentiometer using the .NET gadgeteer. They both use the SPI protocol so at first sight this should be easy.
The potentiometer is…

user2793004
- 11
- 1