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's Content

There have been 8 items by JoopC (Search limited from 30-March 23)


By content type

See this member's

Sort by                Order  

#66166 SPI on VB?

Posted by JoopC on 16 January 2017 - 07:27 AM in Visual Basic Support

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



#65635 Bit shift operator worked in 4.2 but not in 4.3

Posted by JoopC on 22 August 2016 - 06:59 AM in Netduino Plus 2 (and Netduino Plus 1)

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



#65633 Bit shift operator worked in 4.2 but not in 4.3

Posted by JoopC on 22 August 2016 - 06:08 AM in Netduino Plus 2 (and Netduino Plus 1)

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



#65547 Manifest for .NETMF (the current state and the future we want for it)

Posted by JoopC on 11 August 2016 - 08:08 AM in General Discussion

Why is the Netduino not updated with netMF 4.4 ?



#65161 ACS712

Posted by JoopC on 03 June 2016 - 08:07 AM in Netduino 3

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

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



#65054 Why is Wiki down ?

Posted by JoopC on 30 March 2016 - 01:40 PM in General Discussion

B)




#64978 Netduino Libraries on GitHub

Posted by JoopC on 08 March 2016 - 01:51 PM in Netduino 3

It is necessary to have a new web master now Chris is occupied with cases who required more attention.



#64935 Windows on Devices? When?

Posted by JoopC on 25 February 2016 - 05:57 PM in General Discussion

C# has a bigger potential, easier to write and a worthy successor compaired to C++, for a simple app most of the time it is not necessary to write low level.




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.