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.

NooM's Content

There have been 301 items by NooM (Search limited from 09-June 23)


By content type

See this member's


Sort by                Order  

#47162 I2C on Netduino 1 not working

Posted by NooM on 13 March 2013 - 11:18 PM in Netduino 2 (and Netduino 1)

id look at an existring driver for that display (netduino) so you can see the settings and such.

 

id also use an multi i2c class. (link in my signature)




#45140 I2C on Netduino 1 not working

Posted by NooM on 08 February 2013 - 07:59 AM in Netduino 2 (and Netduino 1)

that doesent look right:

new I2CDevice.Configuration(1, 1);

 

wich device it is? name

 

and what about pullups on i2c lines?




#49821 Does any one would like to buy a more powerful STM32F407 MF board?

Posted by NooM on 23 May 2013 - 11:00 AM in General Discussion

sounds like the stuff  http://www.wvshare.com offers. (except they dont offer netmf, and netmf Drivers for their modules)




#46113 433MHz / 2.4GHz communications with Netduino/Netduino Plus

Posted by NooM on 22 February 2013 - 11:24 PM in General Discussion

the nRF24L01+ work very well, iam using them. on codeplex is a library for that device.

communication arduino <> netduino via the nrf i didnt got to work - i think its of the codebase, so its hard to find

out the right channel and addresses for each. theoretically it would work.

 

the 433 i suggest not to use, thats illegal in many countries, and there is also a lot of noise, and afaik

you have to filter the noise out yourself, while the nrf makes this for you.




#47492 Netduino Plus 2 native c firmware upload

Posted by NooM on 22 March 2013 - 07:50 PM in Netduino Plus 2 (and Netduino Plus 1)

I am not sure this is relevant, but ST-LINK/V2 included on the Discovery board can be used to debug and program other micros/boards via SWD, it is just needed to remove those two jumpers of CN3 connector (ST-LINK/DISCOVERY selector).

 

i told him in the chat :(




#52513 Netduino 2 and the Adafruit BMP085 Barometer (I2C)

Posted by NooM on 03 September 2013 - 04:33 AM in Netduino 2 (and Netduino 1)

i meant 4.2.2.2 not the 4.3 beta :D




#52526 Netduino 2 and the Adafruit BMP085 Barometer (I2C)

Posted by NooM on 03 September 2013 - 04:31 PM in Netduino 2 (and Netduino 1)

damn :( i thought its fixed in that version :(

 

it works fine with netduino v1 versions (iam using the mini, no problems there with i2c,spi and uart, but other bugs :D )




#52485 Netduino 2 and the Adafruit BMP085 Barometer (I2C)

Posted by NooM on 31 August 2013 - 01:29 PM in Netduino 2 (and Netduino 1)

your code doesent look correct.

also, has your sensor pullups? if not you have to add 4.7kohm ones

 

 

ill add my classes, use them, i used it, they work.

 

...

IC_BMP085 press;

ress = new IC_BMP085(0x77);

 

...

 

 void print()   {   String logString =   "pressure: " + press.pressure + " " +   "altitude: " + press.altitude.ToString("F1") + " " +   "free mem: " + Debug.GC(false);   Debug.Print(DateTime.Now + ": " + logString);

}

Attached Files




#52497 Netduino 2 and the Adafruit BMP085 Barometer (I2C)

Posted by NooM on 02 September 2013 - 12:38 PM in Netduino 2 (and Netduino 1)

it really shouldnt return 0's. if it has pullups on their board, than you dont need one.

 

maybe upgrade the a newer firmware version of your netduino. iirc there were i2c problems before 4.2.2.2




#52541 Netduino 2 and the Adafruit BMP085 Barometer (I2C)

Posted by NooM on 04 September 2013 - 06:43 AM in Netduino 2 (and Netduino 1)

no i dont own one, and never have.

 

but i was active a lot and saw a lot of that i2c stuff, but from what i know it got fixed in 4.2.2.2, well doesent look like :(




#52217 Ulrimate Netduino Shield

Posted by NooM on 18 August 2013 - 10:19 AM in Project Showcase

actually its quite nice!

 

a little big, but thats becouse of the proto space wich is ok.

 

honestly i didnt even expect that you ever get a working version when i read the title. "Ulrimate" :D

maybe chris or so can fix this (?! i guess you mean ulTimate?!)

 

anyway, good job!

whats the price of one ?




#45831 Home Control with Netduino Plus 1

Posted by NooM on 19 February 2013 - 06:39 PM in General Discussion

you can get gthe time by timeserver.

and use a realtime clock as backup (the ds1307 chip even havs some battery backed sram - wich you can use to store a few timetables)

 

the netduino has no builtin rtc :(

 

i hope netduino 3 will have one :P




#47746 Is possible to use Com1 for debugging and communication?

Posted by NooM on 30 March 2013 - 05:36 AM in Netduino 2 (and Netduino 1)

its is totally possible. smokingfish did this for the mini.

 

_but_ you have to change the firmware todo this.




#46219 VS2012 NetduinoPlus 4.2 firmware

Posted by NooM on 25 February 2013 - 12:18 PM in Netduino Plus 2 (and Netduino Plus 1)

you nearly got it :)

its: //PWM backlightPwm0 = new PWM(PWMChannels.PWM_PIN_D3, 1000, 0.6f, false);

 

you cant use too low frequenzy (iam not sure whats the smallest value is you can use, theres a thread about it, gutworks explained it there)

 

first value is the pin, second is the freuqenzy in hz, thrid is the duty cycle in percent, 4th is the inverting setting (like 0.1f duty gets to 0.9f than -

thats just that you can use the same code for different external circiuts, cos it makes a difference wich transistor and such you choose, npn, pnp)




#46125 VS2012 NetduinoPlus 4.2 firmware

Posted by NooM on 23 February 2013 - 10:34 AM in Netduino Plus 2 (and Netduino Plus 1)

you set the output to netmf 4.2 in properties?




#45825 Home Control with Netduino Plus 1

Posted by NooM on 19 February 2013 - 06:23 PM in General Discussion

no there isent, but you can save your data on a sd card, and if its smaller than 64kb on an eeprom.

there is also flash ic's with some mb (but i think they are unhandy, need to earse a whole sector a time.. and such stupido stuff :P )




#46221 VS2012 NetduinoPlus 4.2 firmware

Posted by NooM on 25 February 2013 - 01:57 PM in Netduino Plus 2 (and Netduino Plus 1)

it doesent warn you cos float is a lot of numbers, in fact 10(.0) is a float too.

 

in anohter thread chris mentioned to call pwm.Start();  -- so i think thats the problem here




#51151 Netduino Plus 2 and Communication with Windows Forms

Posted by NooM on 06 July 2013 - 06:46 PM in Netduino Plus 2 (and Netduino Plus 1)

you can also do that with serial comms, wich is very nice and easy to use.

 

a tutorial:

http://blog.codeblac...with-RS232.aspx

 

edit: i use serial comms for all win-duino communication, its way more lightweight than ethernet.




#50608 NetduinoGo Shieldbase SPI hookup

Posted by NooM on 18 June 2013 - 07:21 AM in Netduino Go

After using $670 on netduino go related stuff,

 

sounds like a lot. are you sure its only for the go? maybe you can use the stuff you bought for a normal netduino or even an arduino.

thats what i do with my electronic stuff, nearly all parts are compatible with all my different mcu's :D




#45383 I2C netduino plus 2

Posted by NooM on 12 February 2013 - 04:27 PM in Netduino Plus 2 (and Netduino Plus 1)

for the pullups: id suggest using 4.7 kilo-ohm - that worked great for me.

when adding more devices you can lower that, but from my experience most modules have allready pullups included

i havent changed my 4.7k so far, and iam using like 5 devices on the i2c bus




#50366 NetduinoGo Shieldbase SPI hookup

Posted by NooM on 09 June 2013 - 11:12 AM in Netduino Go

its looks ok, what does tghe who am i register answer?

 

ill add my basic code for this module, its i2c, but maybe it helps

 

also try changing your spi speed, start with 1-2 mhz (idk the specs for the device now, but 10mhz sounds high)

Attached Files




#47295 Still a Serial Port Problem

Posted by NooM on 17 March 2013 - 05:30 PM in General Discussion

now i can confirm that serial is not the most reliable, but it works quite well for me.

i noticed that when i send a lot of data very fast (115200) some byte gets lost/shifted by one byte.

i than implemented an packet framing, and also send the size of the packet. its very very reliable since than

 

like that

 

 

id remove all the thread.sleep in your sample code and stuff the bytes into a buffer.

i know you wanna work with a gsp shield, so encoding and stuff wount be of any help.




#48059 Flashing 4.2 failed

Posted by NooM on 05 April 2013 - 06:16 AM in Netduino Mini

it totally likes this cable. its i/o is 3.3v (only the supply from the cable is 5v, dont use that)

in chat you just called this adapter. its an ftdi cable wich is good.




#45556 AnalogInput

Posted by NooM on 15 February 2013 - 06:29 AM in General Discussion

hmpf.. i thought what i said was clear..

 

use that:

 

AnalogInput pot = new AnalogInput(AnalogChannels.GPIO_PIN_A0);




#45502 AnalogInput

Posted by NooM on 14 February 2013 - 08:59 AM in General Discussion

i wonder whats the analoginput class your using is.

 

the microsoft one want AnalogChannels.yourpin and not Pins.yourpin.

secretlabs one, i _think_ (never used it) wants it the way you have it.





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.