To LUGNET HomepageTo LUGNET News HomepageTo LUGNET Guide Homepage
 Help on Searching
 
Post new message to lugnet.robotics.scoutOpen lugnet.robotics.scout in your NNTP NewsreaderTo LUGNET News Traffic PageSign In (Members)
 Robotics / Scout / *217 (-20)
  Re: Scout and USB Tower
 
Make sure that you tell nqc (or MacNQC) that you are using a Scout. You can do this by adding -Tscout to the command line (NQC) or selecting the appropriate target in the preferences dialog for MacNQC. The USB tower and Scout seem to be very (...) (24 years ago, 14-Aug-02, to lugnet.robotics.scout)
 
  Scout and USB Tower
 
With NQC, I can download programs just fine to my RCX from my iMac using the USB IR Tower. When I try to download programs to my Scout however, it fails, acting like the Scout isn't even there. I can send messages and remote commands to the Scout (...) (24 years ago, 12-Aug-02, to lugnet.robotics.scout)
 
  Re: Announcing BricxCC release 3.3.5.6
 
(...) I wanted to publicly thank Rob Doucette for reporting the Access Violation bug and for helping me track down where it was occurring. I'd never have fixed it without his help. A big thank you also goes to David Schilling for reported the (...) (24 years ago, 13-Jul-02, to lugnet.robotics.rcx, lugnet.robotics.rcx.nqc, lugnet.robotics.scout)
 
  Announcing BricxCC release 3.3.5.6
 
(...) I was updating the website earlier today which may have caused some disruption. The link worked for me a few minutes ago. This is as good a time as any to post about my new release of BricxCC. Version 3.3.5.6 fixes an Access Violation during (...) (24 years ago, 12-Jul-02, to lugnet.robotics.rcx, lugnet.robotics.rcx.nqc, lugnet.robotics.scout)
 
  Retry count exceeded
 
HI: After programing a lot of robots with an RCX, I thought I'd sit down and try the scout. I use the first (rcx) SDK and the 'script' language to program. The documentation discusses the ability to program the scout. The editor has a drop down (...) (24 years ago, 5-Mar-02, to lugnet.robotics.scout)
 
  Extensions to Scout via VLL
 
Hi, I am a newbe to lugnet so please forgive me for verboseness and the cross post to the two groups, but my request seems to be across both. My son has been using a scout & microscout in combination for 3 motor robots for some time, using the scout (...) (24 years ago, 25-Feb-02, to lugnet.robotics.vll, lugnet.robotics.scout)
 
  Re: Will TLC continue to support Scout?
 
At the risk of being flamed for "me too"ism.. I bought an RDS in mid-2000 while on business in the US (honest!), for my 7,10 + 12 year old's to get the hang of simple programming. I then grabbed NQC and downloaded the Scout SDK (before TLC removed (...) (24 years ago, 11-Jan-02, to lugnet.robotics.scout)
 
  Re: Will TLC continue to support Scout?
 
dunno if TLC pays attention to this newsgroup, but i'm with you. bought the Robotics Discovery Set for my 7 year old nephew. i specifically wanted one he could use without having to fire up the PC, or learning how to program on the PC. plenty of (...) (24 years ago, 11-Jan-02, to lugnet.robotics.scout)
 
  Will TLC continue to support Scout?
 
Does anyone know what TLC's plans are with respect to Scout? Why are they discontinuing the 9735 Robotics Discovery Set? Are they killing Scout? Will they continue to support it? I just bought one for my 7 year old last year and he loves it. He's (...) (24 years ago, 11-Jan-02, to lugnet.robotics.scout)
 
  Re: Scout SDK missing from mindstorms.lego.com?
 
Hi Chris, I seem to be hosting the only copy in existance :) Try here: (URL) down to the downloads!) Phil. (...) (24 years ago, 16-Dec-01, to lugnet.robotics.scout, lugnet.robotics)
 
  Re: How to read the touch sensors on the Scout in NQC?
 
I was using my scout this past weekend as a coinbox detector to launch a mono rail. The touch sensors work exactly as Dave suggests. You can also just do the following: until(SENSOR_1); Waits until it's touched. until(!SENSOR_1); Waits until the (...) (24 years ago, 17-Dec-01, to lugnet.robotics.rcx.nqc, lugnet.robotics.scout)
 
  Re: How to read the touch sensors on the Scout in NQC?
 
(...) That is what I thought, but it will determine if the touch sensor is pressed. (...) Dunno, I'll try. Then again, if !=255 works... (...) If it were not for Perl I'd never write a line of code ^_^ (24 years ago, 17-Dec-01, to lugnet.robotics.rcx.nqc, lugnet.robotics.scout)
 
  Re: How to read the touch sensors on the Scout in NQC?
 
This program turns on motor A and leaves it running until a touch sensor attached to input 1 is pressed, then it turns off the motor and plays a sound: task main() { On(OUT_A); until(SENSOR_1 == 1); Off(OUT_A); PlaySound(SOUND_UP); } Dave (...) (24 years ago, 16-Dec-01, to lugnet.robotics.rcx.nqc, lugnet.robotics.scout)
 
  Re: How to read the touch sensors on the Scout in NQC?
 
Hi Chris, (...) this is a bit crazy, unless your sensor value is a bit pattern. (...) This is sensible, but are you sure it's ok to use equality and not inequalities like SensorValueRaw(1) < 240? (...) but it's equivalent, also in C, where & is (...) (24 years ago, 16-Dec-01, to lugnet.robotics.rcx.nqc, lugnet.robotics.scout)
 
  Re: How to read the touch sensors on the Scout in NQC?
 
I've sort of solved my problem, but not in a way which really makes total sense. Both of the below fragments work as expectd: #1 if ((SensorValueRaw(1) & SensorValueRaw(0)) != 255) #2 if ((SensorValueRaw(1) != 255) || (SensorValueRaw(0) != 255)) (...) (24 years ago, 16-Dec-01, to lugnet.robotics.rcx.nqc, lugnet.robotics.scout)
 
  How to read the touch sensors on the Scout in NQC?
 
All, I'm feeling pretty stupid right about now. I've read the NQC docs, looked in the newsgroups, books, etc, but I can't seem to figure out how to read the touch sensors on my Scout. I want to implement a bumper checking task but no matter how I (...) (24 years ago, 16-Dec-01, to lugnet.robotics.rcx.nqc, lugnet.robotics.scout)
 
  Re: About SensorValueRaw(SENSOR_3) in Scout
 
Zhengrong, I'm sure you figured this out by now, but I just got it last night so here is a task which reads the light sensor and outputs a sound based on the raw reading. task drone() { CalibrateSensor(); while (shut_up==0) { int b = (...) (24 years ago, 16-Dec-01, to lugnet.robotics.scout)
 
  Re: learning RoboLab (long)
 
(...) I haven't seen this but I imagine that it is similar to the Control Lab version, only taking advantage of the multi-processing capability of the RCX. At least that was my $0.02 during the brainstorming session for this packet. :) (...) If this (...) (24 years ago, 15-Dec-01, to lugnet.robotics.rcx.robolab, lugnet.edu, lugnet.dacta, lugnet.books, lugnet.robotics.scout, lugnet.robotics.vll)
 
  Re: learning RoboLab (long)
 
1. Click www.lego.com/dacta/I...tabase.asp 2. Click the "Quick" button. 3. Click "Search" button. (...) (24 years ago, 10-Dec-01, to lugnet.robotics.rcx.robolab, lugnet.edu, lugnet.dacta, lugnet.books, lugnet.robotics.scout, lugnet.robotics.vll)
 
  Re: learning RoboLab (long)
 
I could not get anywhere with this link. How do you get to the docs? 5.e. Invent & Investigate Database www.lego.com/dacta/I...tabase.asp Activities in the form of student challenges. The Teacher Notes sections show programming examples. 27 (...) (24 years ago, 10-Dec-01, to lugnet.robotics.rcx.robolab, lugnet.edu, lugnet.dacta, lugnet.books, lugnet.robotics.scout, lugnet.robotics.vll)


Next Page:  5 more | 10 more | 20 more

Redisplay Messages:  All | Compact

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