The mindstorms site says that the sound sensor measures DB and DBA, but when I read both types I get exactly the same value. Is this as expected ?
I am using the SoundSensor class in pc api and setting setDBA to true and false.
Rupert
Moderators: roger, 99jonathan, imaqine
SensorPort sp = SensorPort.S3;
SoundSensor sound = new SoundSensor(sp, true);
int db = 0,
dba = 0;
sound.setDBA(false);
for (int i = 0; i < 20; i++) {
db = sound.readValue();
System.out.println(System.currentTimeMillis() + " DB " + db);
}
sound.setDBA(true);
for (int i = 0; i < 20; i++) {
dba = sound.readValue();
System.out.println(System.currentTimeMillis() + " DBA " + dba);
}
for (int i = 0; i < 20; i++) {
sound.setDBA(false);
db = sound.readValue();
sound.setDBA(true);
dba = sound.readValue();
System.out.println(System.currentTimeMillis() + " DB " + db + " DBA " + dba);
}
1306677386293 DB 93
1306677386322 DB 87
1306677386353 DB 91
1306677386428 DB 81
1306677386503 DB 23
1306677386572 DB 8
1306677386649 DB 4
1306677386718 DB 4
1306677386764 DB 5
1306677386816 DB 4
1306677386870 DB 4
1306677386922 DB 4
1306677386950 DB 3
1306677386996 DB 3
1306677387072 DB 3
1306677387139 DB 4
1306677387215 DB 4
1306677387293 DB 4
1306677387342 DB 4
1306677387392 DB 4
1306677387483 DBA 79
1306677387533 DBA 89
1306677387563 DBA 84
1306677387617 DBA 48
1306677387697 DBA 14
1306677387763 DBA 6
1306677387835 DBA 4
1306677387905 DBA 3
1306677387974 DBA 3
1306677388027 DBA 3
1306677388058 DBA 3
1306677388108 DBA 3
1306677388138 DBA 3
1306677388168 DBA 3
1306677388199 DBA 3
1306677388252 DBA 3
1306677388283 DBA 3
1306677388374 DBA 3
1306677388447 DBA 3
1306677388518 DBA 3
1306677388759 DB 91 DBA 91
1306677389039 DB 89 DBA 92
1306677389313 DB 91 DBA 89
1306677389525 DB 91 DBA 91
1306677389845 DB 92 DBA 91
1306677390034 DB 91 DBA 90
1306677390274 DB 87 DBA 91
1306677390549 DB 91 DBA 93
1306677390759 DB 93 DBA 90
1306677391040 DB 85 DBA 93
1306677391279 DB 92 DBA 92
1306677391475 DB 89 DBA 92
1306677391770 DB 89 DBA 93
1306677391984 DB 89 DBA 91
1306677392245 DB 88 DBA 93
1306677392505 DB 92 DBA 93
1306677392725 DB 87 DBA 92
1306677393053 DB 92 DBA 87
1306677393240 DB 90 DBA 89
1306677393473 DB 90 DBA 92
Users browsing this forum: No registered users and 1 guest