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.

JoopC

Member Since 02 Feb 2013
Offline Last Active Aug 14 2017 12:59 PM
*----

Posts I've Made

In Topic: SPI on VB?

16 January 2017 - 07:27 AM

Mark, not entirely true.

with the program DaL all the aspects of sensors and howto is handled (oa seven segments SPI). Even the infamous network bug is solved (hanging the Netduino when internet is down).
You can control the program with simple web pages, design own dashboards and see howto sending and receiving with the pages and Phone app. No programming knowledge is needed. And all the code is free.

You can download the program here: https://dalue.codepl...ses/view/630351

In Topic: Bit shift operator worked in 4.2 but not in 4.3

22 August 2016 - 06:59 AM

MAC address

Public Function MACaddress() As String
Dim macInDecs As Byte() = NetworkInterface.GetAllNetworkInterfaces(0).PhysicalAddress
Dim strMacAddress = ""
For t As Integer = 0 To macInDecs.Length - 1
strMacAddress &= If(t = 0, "", ".") & macInDecs(t).ToString("X2")
Next
Return strMacAddress

End Function

In Topic: Bit shift operator worked in 4.2 but not in 4.3

22 August 2016 - 06:08 AM

do this:

'UShort * 2^8 for left shifting 8 bit (<< 8)
'UShort / 2^8 for right shifting 8 bit (>> 8)

' X * 2 ^ Y for << left shifting
' X / 2 ^ Y for >> right shifting

'so 4 << 7 = 4 * 2 ^ 7
'so 5 >> 3 = 5 / 2 ^ 3

In Topic: Manifest for .NETMF (the current state and the future we want for it)

11 August 2016 - 08:08 AM

Why is the Netduino not updated with netMF 4.4 ?

In Topic: ACS712

03 June 2016 - 08:07 AM

yes it is, and it works also fine with a ads1115

http://gathering.twe...es/1547307/last

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.