yetanothernetduino - Viewing Profile: Topics - Netduino Forums
   
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.

yetanothernetduino

Member Since 01 Feb 2013
Offline Last Active Apr 26 2013 04:32 AM
-----

Topics I've Started

Seeduino GPRS Shield V2.0

24 April 2013 - 03:19 PM

Hi everyone,

 

Just wondering if anyone have used this seeduino gprs shield version 2 on netduino and managed to be able to read SMSes?

 

 


GPRS Shield

04 April 2013 - 01:21 PM

Hi,

I am using this code

http://netduino2seedgsm.codeplex.com/

 

and this hardware

http://www.seeedstud...l?cPath=132_134

 

Managed to send sms ok however reading all SMS have been no joy.

 

Just wondering y whthe visual studio output produces funny characters: eg AÕi5GªA,j etc etc even thought the code is converted byte[] from utf8 string.

 

 

  private static string GetUTF8StringFrombytes(byte[] byteVal)
  {
  byte[] btOne = new byte[1];
  StringBuilder sb = new StringBuilder("");
  char uniChar;
  for (int i = 0; i < byteVal.Length; i++)
  {
  btOne[0] = byteVal[i];
  if (btOne[0] > 127)
  {
  uniChar = Convert.ToChar(btOne[0]);
  sb.Append(uniChar);
  Debug.Print(uniChar.ToString());
  }
  else
  {
  sb.Append(new string(Encoding.UTF8.GetChars(btOne)));
  Debug.Print(new string(Encoding.UTF8.GetChars(btOne)));
  }
  }
  return sb.ToString();
  }
  }

 

 


Components for Netdunio Plus 2

01 February 2013 - 02:42 PM

HI All,

I am coming from a .net background so programming won't be hard.

 

I just got hooked into Netduino about 3 hours ago. Immediately, I just want to build a computerized controlled watering system (now) and control some lights (near future)

 

Can you please suggest me what's the relay module for Netdunio Plus 2? I saw there are a couple on eBay/Amazon and I am a bit confused and not sure if they are compitable, and what else do I need in order build this system?

 

I am starting with two empty hands, and the items I have in mind so far are

1. solenoid wavles, pipe, drippers

2. netduino plus 2

 

 

Thank you in advance :)


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.