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 08-June 23)


By content type

See this member's


Sort by                Order  

#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... 




#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...




#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




#61864 raspberry pi 2

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

@foged - in a couple of weeks




#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




#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.




#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?




#60388 CodeClub New Zealand on National TV News

Posted by Juzzer on 11 October 2014 - 07:49 AM in Project Showcase

Mint! - glad my fell Kiwis are jumping in with both feet, i will have to check it out and lucky for me i land in AKL next Friday  :rolleyes:




#60736 Custom building a smaller Netduino 2

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

Good job :)




#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());
            }         
        }
    }
}



#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?




#61962 Low cost wifi module ESP8266 for IoT

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

With the v1.0 firmware they work really well :)

 

https://www.ghielect...age=1#msg186319




#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....




#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



#61629 News from the MBN team

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

Mint  :)




#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 :)




#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());




#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.




#61867 Azure EventHub Service Gateway for Netduino Devices

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

Nice 1




#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




#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




#63512 Why not clock it @ 180MHz?

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

The default STM port that the N3 is based on doesn't allow 180mhz due to the clock dividers used for USB and other peripherals.

 

To achieve 180mhz more files need a massage.




#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.





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.