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.

Family

Member Since 01 Nov 2013
Offline Last Active Dec 29 2014 09:54 AM
-----

Topics I've Started

Nwazet Touch DialogType

26 November 2013 - 01:49 AM

I have an Nwazet Touch Screen on my Netduino Go. The screen can display a keyboard using:

 

var response = canvas.TouchscreenShowDialog(DialogType.Alphanumeric);

 

DialogType only has Alphanumeric as an option. It runs this code:

 

  public string TouchscreenShowDialog(DialogType dialogType) {   BasicTypeSerializer.Put(SendContext, (byte)Command.TouchscreenShowDialog);   BasicTypeSerializer.Put(SendContext, (ushort)dialogType); <---- If I change this value to 0, 1, 2 or 3 it makes no difference   Execute();   Receive();   TouchScreenDataType eventType = (TouchScreenDataType) BasicTypeDeSerializer.Get(ReceiveContext);   if (eventType != TouchScreenDataType.String) {   throw new ApplicationException("eventType");   }   return BasicTypeDeSerializer.Get(ReceiveContext, "");   }

 

Apart from trying to change the value of dialogType, which doesn't do anyhting, this code is too complex for me to follow. I can't see any obvious way of setting it so that it will just display a numeric keyboard. The default mode allows the shift button to scroll through lowercase -> punctuation -> numeric -> uppercase

 

Does anybody have any idea of how I could just show the numeric keyboard?

 

Kind regards,

 

Julian


Can you plug/unplug modules with power on?

26 November 2013 - 01:28 AM

Hi,

 

I have been powering down my netduino go whenever I need to plug in or unplug modules. I wanted to check if that is necessary.

 

Kind regards,

 

Julian


Netduino Go Driver not found for Windows 8.1

01 November 2013 - 10:32 AM

I received my Netduino Go Starter Kit today and have set it up. Unfortunately I have run into a problem straight away. Windows can't locate a driver for it.

 

 

I can't locate a driver for the Netduino Go, where can I get this from?

 

Kind regards,

 

Julian


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.