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.

Juzzer's Content

There have been 31 items by Juzzer (Search limited from 23-May 23)


By content type

See this member's


Sort by                Order  

#60109 Windows on Devices? When?

Posted by Juzzer on 13 September 2014 - 06:49 PM in General Discussion

Visual Studio :D

 

https://www.ghielect.../topic?id=16550




#60107 Windows on Devices? When?

Posted by Juzzer on 13 September 2014 - 05:50 PM in General Discussion

@Spiked - you only need a few passives and a crystal to get it running...




#60105 Windows on Devices? When?

Posted by Juzzer on 13 September 2014 - 05:29 PM in General Discussion

@Se3ker $4.20 for 1000+ - group buy anyone?  :lol:

 

*Edit*

 

$4.17ea for 5 STM32F401CEU6... from Future Electronics... 




#61864 raspberry pi 2

Posted by Juzzer on 15 March 2015 - 12:09 PM in General Discussion

@foged - in a couple of weeks




#61840 raspberry pi 2

Posted by Juzzer on 10 March 2015 - 08:23 PM in General Discussion

STM32F411's running NETMF 4.3

Carbon is WiFi using a ESP-03 module

Helium is BLE




#61805 raspberry pi 2

Posted by Juzzer on 08 March 2015 - 02:02 PM in General Discussion

What strikes me so odd, is that we all thrive to build IOT DEVICES, whilst most vendors (RP, Netduino, GS, Intel etc.) do not add the INTERNET component as simple as possible. In IOT the bridge to to I is through the wifi - not through a cable.

 

I know we are in the early days, but spending hours and $$ on Building basic drivers does not drive value for my customers. They need a device that quickly deploy, seamless integrate with their existing infrastructure and cobe without any concern.

 

I love the N+ series. Yes there are gaps. But missing WIFI across the vendor stack is a big surprise!

 

How about one of these ;)

 

Boards.jpg




#61866 News from the MBN team

Posted by Juzzer on 15 March 2015 - 01:40 PM in General Discussion

Yes you can use GCC

 

I would email the MBN team about getting one sent from France direct as perhaps they can do cheaper shipping.




#61824 News from the MBN team

Posted by Juzzer on 09 March 2015 - 06:53 PM in General Discussion

Even Minter :)




#61629 News from the MBN team

Posted by Juzzer on 16 February 2015 - 10:30 AM in General Discussion

Mint  :)




#61725 Serial ports and Bluetooth I/O and GPIO output

Posted by Juzzer on 26 February 2015 - 09:58 AM in Netduino 2 (and Netduino 1)

I'm a bit confused what you are actually trying to achieve and what examples are missing to get you going...

 

Are you just trying to achieve BT comms?




#61717 Serial ports and Bluetooth I/O and GPIO output

Posted by Juzzer on 25 February 2015 - 11:16 AM in Netduino 2 (and Netduino 1)

using System.IO.Ports;
using Microsoft.SPOT.Hardware;
 
namespace MFConsoleApplication2
{
    public class Program
    {
        private static SerialPort _serial;
        private static OutputPort _d2, _d3;
 
        public static void Main()
        {
            _d2 = new OutputPort(Cpu.Pin.GPIO_Pin0, false);
            _d3 = new OutputPort(Cpu.Pin.GPIO_Pin1, false);
 
            _serial = new SerialPort("COM1", 9600, Parity.None, 8, StopBits.One);
            _serial.DataReceived += _serial_DataReceived;
            _serial.Open();
        }
 
        static void _serial_DataReceived(object sender, SerialDataReceivedEventArgs e)
        {
            byte[] bytes = new byte[1];
            while (_serial.BytesToRead > 0)
            {
                // read a single byte                 
                _serial.Read(bytes, 0, bytes.Length);
 
                // send the same byte back                 
                _serial.Write(bytes, 0, bytes.Length);
 
                _d2.Write(!_d2.Read());
                _d3.Write(!_d3.Read());
            }         
        }
    }
}



#61442 Things we can learn from GHI

Posted by Juzzer on 02 February 2015 - 08:48 AM in General Discussion

@Mario - i posted this picture yesterday that Chris deleted after a few hours...

 

Lets see how long it lasts this time  :blink:

Attached Thumbnails

  • 10247_IMAG0416_large.jpg



#61437 Things we can learn from GHI

Posted by Juzzer on 02 February 2015 - 08:11 AM in General Discussion

The problem isn't Netduino, but MS which almost dropped the MF project. That's a big blame, at least in my opinion.

 

Also an over enthusiastic admin who deletes posts and has an interesting marketing perspective....




#61831 Battery powered logger with GPRS using Netduino plus 1 / 2

Posted by Juzzer on 10 March 2015 - 09:45 AM in Netduino Plus 2 (and Netduino Plus 1)

Yes that module can be used.

 

I am building a similar device over the coming weeks running NETMF so if your interested drop me an email.




#64091 Odd compilation and deployment problems in VS2015

Posted by Juzzer on 11 September 2015 - 03:19 AM in General Discussion

https://www.ghielect...d=19617&page=1?




#64100 Odd compilation and deployment problems in VS2015

Posted by Juzzer on 11 September 2015 - 10:57 PM in General Discussion

It's already been raised with the NETMF team.




#60102 uecide work with netduino plus ???

Posted by Juzzer on 13 September 2014 - 04:24 PM in Netduino Plus 2 (and Netduino Plus 1)

Nicer than Visual Studio? 

Good luck with that  :ph34r:




#63514 SPLIT: Integrated MAC and 10 vs 100 mbps

Posted by Juzzer on 14 July 2015 - 07:55 AM in Netduino 3

yes it comes in 100 pin which you can hook up to a PHY




#61843 Compiled 4.3, got ER_CONFIG & ER_FLASH, but how to deploy?

Posted by Juzzer on 11 March 2015 - 09:24 AM in Netduino Plus 2 (and Netduino Plus 1)

Rename Tinybooter.hex to Tinybooter.s19

 

Open DFU File Manager

 

Top option "I want to GENERATE a DFU......"

 

Click "S19 or Hex" button - call it Tinyboote.dfu

 

Job done




#60736 Custom building a smaller Netduino 2

Posted by Juzzer on 17 November 2014 - 09:08 PM in Project Showcase

Good job :)




#61966 One InterruptPort, two interrupts?

Posted by Juzzer on 28 March 2015 - 04:08 PM in Netduino Plus 2 (and Netduino Plus 1)

using System;
using System.Threading;
using Microsoft.SPOT;
using Microsoft.SPOT.Hardware;
using StmHelper;
 
namespace MFConsoleApplication1
{
    public class Program
    {
        private static InterruptPort _pin;
        
        public static void Main()
        {
            _pin = new InterruptPort(Pin.PC1,true,Port.ResistorMode.PullUp,Port.InterruptMode.InterruptEdgeBoth);
            _pin.OnInterrupt += pin_OnInterrupt;
            Thread.Sleep(Timeout.Infinite);
        }
 
        static void pin_OnInterrupt(uint data1, uint data2, DateTime time)
        {
            PinState buttonState = _pin.Read() ? PinState.Off : PinState.On;
            switch (buttonState)
            {
                case PinState.Off:
                   Debug.Print("Off");
                    break;
                case PinState.On:
                   Debug.Print("On");
                    break;
            }
        }
    }
    public enum PinState
    {
        Off = 0,
        On = 1
    }
}



#61823 Troubleshooting Memory

Posted by Juzzer on 09 March 2015 - 06:52 PM in Netduino Plus 2 (and Netduino Plus 1)

true forces the GC to run and release memory.

You want Debug.Print(Debug.GC(false).ToSting());




#61822 Flash / Code Storage / RAM ..etc.

Posted by Juzzer on 09 March 2015 - 06:50 PM in General Discussion

The 1MB flash contains TinyBooter, TinyCLR and your user program.

RAM is seperate.




#61830 Flash / Code Storage / RAM ..etc.

Posted by Juzzer on 10 March 2015 - 09:42 AM in General Discussion

That is showing free ram - the other 92kb has been gobbled up by starting up TinyCLR

This can be reduced by removing features from the firmware, for instance a base STM firmware is only using about 40kb




#61867 Azure EventHub Service Gateway for Netduino Devices

Posted by Juzzer on 15 March 2015 - 01:46 PM in Project Showcase

Nice 1





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.