To LUGNET HomepageTo LUGNET News HomepageTo LUGNET Guide Homepage
 Help on Searching
 
Post new message to lugnet.robotics.nxtOpen lugnet.robotics.nxt in your NNTP NewsreaderTo LUGNET News Traffic PageSign In (Members)
 Robotics / NXT / *733 (-20)
  Re: Classroom experiments gone awry
 
(...) You have the NXT record it for you, perferable in a comma-delimited text file, which you can then import and open right in Excel. Your own home-grown datalog, with a data arrangement you specify. Just use file operations: (URL) other (...) (17 years ago, 29-Apr-07, to lugnet.robotics.nxt)
 
  Re: Classroom experiments gone awry
 
(...) I placed a dollar bill with one corner of it pinned under a chair leg. The challenge was to start from the spot and circle around the outside of the legs. Whichever team can do it in less than two tries claims the dollar. I think my dollar is (...) (17 years ago, 29-Apr-07, to lugnet.robotics.nxt)
 
  Re: Classroom experiments gone awry
 
(...) Steering under NXT-G is... not exactly intuitive. I tried some experiments a whle back, but I never even tried to play with the steering slider because I had no patience for rough approximations (like trying to see if I had moved the slider (...) (17 years ago, 29-Apr-07, to lugnet.robotics.nxt)
 
  Re: NBC/NXC beta news
 
(...) I keep forgetting the not-quite part of your language is an attempt to map operations directly onto the underlying VM. I was hoping to avoid rewriting code but now realize that making all elements of this structure top-level elements will (...) (17 years ago, 29-Apr-07, to lugnet.robotics.nxt)
 
  NBC arrays
 
Is there some more detailed (and lower-level) description of how the arrays work in NBC, please? Something that would complement the description in the manual? This is how I see the arrays in NBC/standard firmware: * a compiled program works with (...) (17 years ago, 29-Apr-07, to lugnet.robotics.nxt)
 
  Re: NBC/NXC beta news
 
(...) Sorry for not getting back with you sooner about this bug, Rosco. Life comes at you fast, as they say. :-) I investigated this problem today and it looks like I've got it fixed. There were several bugs going on in NBC which were causing the (...) (17 years ago, 28-Apr-07, to lugnet.robotics.nxt)
 
  NXTasy challenge no. 2
 
I've postponed the deadline on NXTasy.org challenge no. 2 till June 1st. Also, detailed rules and prizes were published here: (URL) urge the (advanced) readers of Lugnet to contribute to this challenge. I think it's important that MDP/MCP members (...) (17 years ago, 28-Apr-07, to lugnet.robotics.nxt)
 
  RE: Classroom experiments gone awry
 
Your results are not at all what I intuitively expect. From your previous posts, I think the "turn ratio" settings you've used range from 0 to +100 in steps of 10. The following table is what I expected. Turn Inner Expected Observed Ratio Wheel (...) (17 years ago, 28-Apr-07, to lugnet.robotics.nxt)
 
  Re: Difficulty with WRITE COMMAND over BT
 
(...) Thank you very much for the reply. It is still consistently puzzling. If I write some other file - for example a text file named file.txt, I can write and close, and see it in the list (through findfirst/findnext) successfully. This works both (...) (17 years ago, 28-Apr-07, to lugnet.robotics.nxt)
 
  Re: Classroom experiments gone awry
 
(...) I'm using terms of my own making. These are terms that seem to work with 10 - 12 year olds. By "dominant" I mean the wheel which measures the duration specified in a turn. Sometimes I use the term "outside wheel". For example, a duration of (...) (17 years ago, 28-Apr-07, to lugnet.robotics.nxt)
 
  Re: Difficulty with WRITE COMMAND over BT
 
(...) It's hard to say what exactly might be going wrong. Here's how I write a file to the NXT: // write in < 64 byte chunks xferred := 0; aStream.Position := 0; // start at the beginning while xferred < size do begin cnt := Min(size - xferred, (...) (17 years ago, 27-Apr-07, to lugnet.robotics.nxt)
 
  FW: Classroom experiments gone awry
 
It is hard to lay fingers on trouble shooting this without understanding your experiment. Would you clarify your experiment: Hypothesis: ??? Control variable: wheels size? Independent variable : Dependent variable: Procedure: ??? --Elizabeth (...) (17 years ago, 27-Apr-07, to lugnet.robotics.nxt)
 
  RE: Classroom experiments gone awry
 
I'm having trouble understanding the meaning of your results. What do the percentages mean? I'd also just like to check that you used the "run for 10 rotations" as duration with "next action" indicated as stop. What speed did you use for the (...) (17 years ago, 26-Apr-07, to lugnet.robotics.nxt)
 
  Difficulty with WRITE COMMAND over BT
 
Hi, I am attempting to download a .rxe program file to NXT from some programming environment that allows communicating over serial port. So I connect to NXT (with 1.04 firmware) from the WinXPSP2 box with BT USB dongle, and use the commands (...) (17 years ago, 26-Apr-07, to lugnet.robotics.nxt)
 
  Re: Classroom experiments gone awry
 
(...) What do you mean by "dominant" here? And what is a "tick" on the steering slider equal to? I've done something similar to figure out the behavior with respect to the position of the steering slider, but this is a *great* place to introduce the (...) (17 years ago, 26-Apr-07, to lugnet.robotics.nxt)
 
  Classroom experiments gone awry
 
Imagine a classroom with eight 13-year old boys, paired up with a laptop and the standard NXT Edu robot. The 9x9 inch floor tiles made perfect for a little experiment in derivation. Starting at a fixed point and heading, each team marked where the (...) (17 years ago, 26-Apr-07, to lugnet.robotics.nxt)
 
  Re: NBC/NXC beta news
 
(...) Well that technique does compile, but produces interesting results: --- #include "NXCDefs.h" struct st { string s1; int i1; } st a1[]; st v1,v2; task main() { v1.s1 = "test"; v1.i1 = 9; NumOut(0,0,v1.i1); TextOut(40,0,v1.s1); (...) (17 years ago, 25-Apr-07, to lugnet.robotics.nxt)
 
  Re: NBC/NXC beta news
 
(...) The problem with code of this sort is that the opcodes for manipulating values do not readily allow for this type of operation. To set the variable val to the value of the bxxx field of the structure type stored in your array of structs I (...) (17 years ago, 25-Apr-07, to lugnet.robotics.nxt)
 
  Re: Another useless utility
 
(...) I've created a little desktop wrapper for the Mac version of rsoplay called RSOPlayer. You can drag RSO files onto it to play them, double-click RSOPlayer to select files to play with a file browser, or even assign RSOPlayer to handle RSO (...) (17 years ago, 25-Apr-07, to lugnet.robotics.nxt, FTX)
 
  Deriving power from NXT® motor port A
 
This (URL) special cable> allows you to power external devices such as a a motor multiplexer or a wireless camera from your NXT. No need for external bulky battery box! (if your current consumption is low enough, 800mA max). Though plugged into NXT (...) (17 years ago, 25-Apr-07, to lugnet.robotics.nxt.nxthacking, FTX)


Next Page:  5 more | 10 more | 20 more

Redisplay Messages:  All | Compact

©2005 LUGNET. All rights reserved. - hosted by steinbruch.info GbR