 | | 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)
|
| |
 | | Re: learning RoboLab (long)
|
|
(...) Miles, thanks for posting that long catalog of available reference material for ROBOLAB. I too have been through the frustrating experience of finding learning resources. ROBOLAB is good software because it is in the spirit of LEGO, where you (...) (24 years ago, 9-Dec-01, to lugnet.robotics.rcx.robolab, lugnet.edu, lugnet.dacta, lugnet.books, lugnet.robotics.scout, lugnet.robotics.vll)
|
| |
 | | learning RoboLab (long)
|
|
The following learning resources apply to Lego Dacta's RoboLab "Mindstorms for Schools" programming software, version 2.5 where indicated, otherwise, earlier versions: 1. Dacta RoboLab Teacher's Guides Printed paper books. Detailed instructions for (...) (24 years ago, 8-Dec-01, to lugnet.robotics.rcx.robolab, lugnet.edu, lugnet.dacta, lugnet.books, lugnet.robotics.scout, lugnet.robotics.vll)
|
| |
 | | Scout SDK missing from mindstorms.lego.com?
|
|
Hi, Plese forgive a newbie here. I just tried to get the Scout SDK from the Lego website but their ASP pages report various errors and I can't get the files. Would someone be kind enough to help me obtain the software? Thanks in advance! Chris (...) (24 years ago, 8-Dec-01, to lugnet.robotics.scout, lugnet.robotics)
|
| |
 | | The MicroScout's Script mode is VERY disapointing...
|
|
I wrote a very small message to VLL converter with the Scout so that I could play around with my 3 MicroScouts. The direct actions are useful but the script mode is pointless. WHY O WHY did LEGO make it play a stupid song BEFORE each motor action??? (...) (24 years ago, 5-Dec-01, to lugnet.robotics.microscout, lugnet.robotics.scout, lugnet.robotics.vll)
|
| |
 | | Re: Infra Red Reflection Based Obstacle Detector-IRROD
|
|
Nice little device... but the second link should be (URL) (24 years ago, 8-Nov-01, to lugnet.robotics.rcx, lugnet.robotics.scout)
|
| |
 | | Infra Red Reflection Based Obstacle Detector-IRROD
|
|
Mindsensors is please to Announce the New release of Infra Red Reflection Based Obstacle Detector which is very economic alternative to light sensor. For more details visit Mindsensors Robotics web page at www.geocities.com/mindsensors and (...) (24 years ago, 7-Nov-01, to lugnet.robotics.rcx, lugnet.robotics.scout)
|
| |
 | | Re: Is TLC killing off RDS?
|
|
"Dean Husby" <nntp@akasa.bc.ca> wrote in message news:3BC323A2.658B88...a.bc.ca... (...) Is this still the case? If so, is anybody buying them up - here in the UK I'd jump at the chance to buy one from someone, with a sensible mark up to cover (...) (24 years ago, 7-Nov-01, to lugnet.robotics.scout)
|
| |
 | | Re: Mindstorms Automatic Train Control Questions
|
|
One Addition for Scout, you can use a fiber cable to connect Scout and a micro-scout, let that micro-scout to control a switch point, so you can get three output ports from Scout. Then if you can put Scout on a special position with a external light (...) (24 years ago, 31-Oct-01, to lugnet.trains, lugnet.robotics, lugnet.robotics.scout)
|
| |
 | | Re: Scout SDK
|
|
thanks to phil: From: Phil Ashby <phil@ashbysoft.cix.co.uk> To: lugnet.robotics.scou...lugnet.com Subject: Re: Is TLC killing off RDS? I have uploaded the ScoutSDK to my home page: (URL) look at the downloads section at the bottom of the page. Phil. (...) (24 years ago, 28-Oct-01, to lugnet.robotics.scout)
|