eizner23 - Viewing Profile: Posts - 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.

eizner23

Member Since 24 Dec 2012
Offline Last Active Feb 16 2017 08:09 PM
-----

Posts I've Made

In Topic: Help with Serial.Read for a newbie

23 May 2015 - 04:30 PM

Ever figure this out?  I have used this Serial Port helper class (attached) in my previous projects.  

Add a reference to it, then initialize it 

//Defaults to: SerialPorts.COM1 (uses D0 and D1), 9600, Parity.None, 8, StopBits.One
        public static SerialPortHelper serialPortHelper = new SerialPortHelper();
 
in the code,  you can write like this
 
 
                
 lock (serialPortHelper){
                     serialPortHelper.PrintLine("sending a command"); }
 
reading response:
 
          
string response = string.Empty;
          response = serialPortHelper.ReadLine();

In Topic: Anyone used a ST7565 GLCD????

04 December 2014 - 03:14 PM

You may refer to Driving an ‘Adafruit ST7565 Negative LCD Display’ with a Netduino

https://fabienroyer....ith-a-netduino/


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.