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 24-April 23)


By content type

See this member's


Sort by                Order  

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




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




#63087 Announcing: Radius Wearables Core

Posted by Juzzer on 09 June 2015 - 09:06 AM in General Discussion

Martin and I would like to take the lid off some ongoing work - the Radius Wearables Core and Radius Reference Hardware. This work is still in its early days and will continue to evolve, but here's an early peek...

The Radius Wearables Core (RWC) is a .Net Micro Framework codebase and accompanying Windows, Windows Phone, Android and iOS companion apps, all written in managed code. The idea behind the RWC is to create an integrated software framework for connected wearables - watches, pendants, and all manner of headless devices too.

The RWC software is free and open-source for non-commercial uses. Commercial use requires a separate license. Distribution of the mobile phone companion apps through app stores involves a separate approval process through Microsoft, Apple and/or Google, though it is intended that the default app (which we will publish) will accomodate custom wearable devices you might create. The RWC software is tested on the Radius, Molecule, IoT Dx Blue, GHI hardware and Netduino.

The Radius Watch reference hardware v1, includes:

  • STM32F401 - 82Mhz 512kb Flash 96kb ram or STM32F411 - 96Mhz 512kb Flash 128kb ram
  • 1.26inch Sunlight readable Sharp MemoryLCD
  • BLE113 Bluetooth LE with separate vreg
  • MPU-9150 9 DOF sensor
  • MPR121 Capacitive touch sensor 
  • Battery backed up RTC
  • 8mb External SPI flash
  • Buzzer
  • Lipo power with charge circuit
  • 3 User buttons
  • Power on/off push button


The Radius Wearables Core software features include :

  • Mobile-phone companion apps for all major mobile platforms
  • Installable Radius apps (requires filesystem - apps are managed from your PC or mobile device)
  • Notification routing and display
  • Radius app sandboxing and resource-management
  • Structured messaging over any serial channel (e.g., BLE on the Radius Reference Hardware)
  • Support for private host-app-to-Radius-app messaging (create your own app protocols)
  • Support for mobile device control (call management, media controls, volume, messaging, etc.)
  • Support for headless devices (annunciators and sensors)
  • Support for multiple Radius-compatible devices attached to a single host (mobile device or PC)
  • A touch or button driven navigation framework


And on the Radius Hardware, includes default apps for:
App Menu, Watch, Notifications and a touch-gesture navigation framework

The source code is available at : https://github.com/M...leDotNet/Radius

Demo video is upcoming...

Attached Thumbnails

  • 11584_WP_20141021_003_large.jpg
  • 11585_WP_20141013_001_large.jpg



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



#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




#61867 Azure EventHub Service Gateway for Netduino Devices

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

Nice 1




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




#61864 raspberry pi 2

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

@foged - in a couple of weeks




#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




#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




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




#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




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




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




#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




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



#61629 News from the MBN team

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

Mint  :)




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




#60736 Custom building a smaller Netduino 2

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

Good job :)




#60409 Tic Toc

Posted by Juzzer on 13 October 2014 - 07:38 PM in General Discussion

Open source right?!!?  :D

 

Indeed it will be :)





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.