giuliomoro

Thanks a lot for getting back to me!

This is great, I hadn't even thought to check the code side of things! I'll check that out... I followed the detailed advice on the other large ultrasonic sensor thread too which was really helpful, so the render is mostly that too. Can you advise what's the best way to enable each sensor in the code one at a time - is there a line I can write in...? (I'm sure that's a dumb question, sorry - very new to the scripting side of things. Though absolutely loving Bela and what it can do).

you probably are using some code based on this. If you have two sensors connected, I would assume that you will have duplicated some lines of code. Comment out the duplicated lines.
Hint: posting your code would help in helping you.

    giuliomoro

    Thanks a lot - I do believe to my best of my memory and knowledge that this is what the code is based on!

    And you're very right, a top tip haha - here is the code... I imagine there's probably redundant stuff in there too from myself not knowing exactly what to chop out etc

    Thanks a lot for your help, I really appreciate having some support with this

    EDIT by giuliomoro: I deleted the 600+ lines cpp code that was making it hard for me to browse the thread. The diff in the post below highlights the important parts of it.

    These are the changes you made to the core/default_libpd_render.cpp file:

    diff --git a/core/default_libpd_render.cpp b/other.cpp
    index ac789c65..5590dd5a 100644
    --- a/core/default_libpd_render.cpp
    +++ b/other.cpp
    @@ -1,3 +1,4 @@
    +
     /*
      * Default render file for Bela projects running Pd patches
      * using libpd.
    @@ -11,12 +12,14 @@
     extern "C" {
     #include <libpd/s_stuff.h>
     };
    -#include <libraries/UdpServer/UdpServer.h>
    -#include <libraries/Midi/Midi.h>
    -#include <libraries/Scope/Scope.h>
    +#include <UdpServer.h>
    +#include <Midi.h>
    +#include <Scope.h>
     #include <string>
     #include <sstream>
     #include <algorithm>
    +#include <stdlib.h>
    +#include <PulseIn.h>
     
     enum { minFirstDigitalChannel = 10 };
     static unsigned int gAnalogChannelsInUse;
    @@ -31,6 +34,24 @@ static unsigned int gFirstDigitalChannel;
     static unsigned int gLibpdDigitalChannelOffset;
     static unsigned int gFirstScopeChannel;
     
    +PulseIn pulseIn;
    +PulseIn pulseIn2;
    +Scope scope;
    +int gTriggerInterval = 1323; // how often to send out a trigger. 2646 samples are 60ms 
    +int gMinPulseLength = 7; //to avoid spurious readings
    +float gRescale = 58; // taken from the datasheet
    +unsigned int gTriggerDigitalOutChannel = 0; //channel to be connected to the module's TRIGGER (digital) pin 
    +unsigned int gTriggerDigitalOutChannel2 = 2;
    +unsigned int gEchoDigitalInPin = 1; //channel to be connected to the modules's ECHO pin (digital pin 1) - check the pin diagram in the IDE
    +unsigned int gEchoDigitalInPin2 = 3;
    +int gTriggerCount = 0;
    +int gTriggerCount2 = 0;
    +int gPrintfCount = 0;
    +int gPrintfCount2 = 0;
    +float* gScopeOut;
    +void* gPatch;
    +bool gDigitalEnabled = 0;
    +
     void Bela_userSettings(BelaInitSettings *settings)
     {
     	settings->uniformSampleRate = 1;
    @@ -295,13 +316,18 @@ void fdLoop(void* arg){
     }
     #endif /* PD_THREADED_IO */
     
    -Scope scope;
    -float* gScopeOut;
    -void* gPatch;
    -bool gDigitalEnabled = 0;
    -
     bool setup(BelaContext *context, void *userData)
     {
    +    // Set the mode of digital pins
    +    pinMode(context, 0, gTriggerDigitalOutChannel, OUTPUT); //sending TRIGGER from digital out
    +    pulseIn.init(context, gEchoDigitalInPin, HIGH); //detect HIGH pulses on this pin
    +    pinMode(context, 0, gTriggerDigitalOutChannel2, OUTPUT); //sending TRIGGER from digital out
    +    pulseIn2.init(context, gEchoDigitalInPin2, HIGH); //detect HIGH pulses on this pin
    +    if(context->analogInChannels != 8){
    +        fprintf(stderr, "This project has to be run with 8 analog channels\n");
    +        return false;
    +    }
    +
     	// Check Pd's version
     	int major, minor, bugfix;
     	sys_getversion(&major, &minor, &bugfix);
    @@ -328,7 +354,7 @@ bool setup(BelaContext *context, void *userData)
     	//gMidiPortNames.push_back("hw:0,0,0");
     	//gMidiPortNames.push_back("hw:1,0,1");
     
    -	scope.setup(gScopeChannelsInUse, context->audioSampleRate);
    +	scope.setup(2, 44100);
     	gScopeOut = new float[gScopeChannelsInUse];
     
     	// Check first of all if the patch file exists. Will actually open it later.
    @@ -466,6 +492,65 @@ bool setup(BelaContext *context, void *userData)
     
     void render(BelaContext *context, void *userData)
     {
    +	for(unsigned int n = 0; n<context->digitalFrames; n++){
    +        gTriggerCount++;
    +        if(gTriggerCount == gTriggerInterval){
    +            gTriggerCount = 0;
    +            digitalWriteOnce(context, n, gTriggerDigitalOutChannel, HIGH); //write the status to the trig pin
    +        } else {
    +            digitalWriteOnce(context, n, gTriggerDigitalOutChannel, LOW); //write the status to the trig pin
    +        }
    +        int pulseLength = pulseIn.hasPulsed(context, n); // will return the pulse duration(in samples) if a pulse just ended 
    +        float duration = 1e6 * pulseLength / context->digitalSampleRate; // pulse duration in microseconds
    +        static float distance = 0;
    +        if(pulseLength >= gMinPulseLength){
    +            static int count = 0;
    +            // rescaling according to the datasheet
    +            distance = duration / gRescale;
    +            libpd_float("distance1", distance);
    +            libpd_bang("foo");
    +            //rt_printf("Sending distance to pd\n");
    +            if(count > 5000){ // we do not want to print the value every time we read it
    +                rt_printf("pulseLength: %d, distance: %fcm\n", pulseLength, distance);
    +                count -= 5000;
    +            }
    +            ++count;
    +            
    +        }
    +        // Logging to the scope the pulse inputs (gEchoDigitalInPin) and the distance
    +        scope.log(digitalRead(context, n, gEchoDigitalInPin), distance/100);
    +        
    +    }
    +    
    +	for(unsigned int n = 0; n<context->digitalFrames; n++){
    +        gTriggerCount2++;
    +        if(gTriggerCount2 == gTriggerInterval){
    +            gTriggerCount2 = 0;
    +            digitalWriteOnce(context, n, gTriggerDigitalOutChannel2, HIGH); //write the status to the trig pin
    +        } else {
    +            digitalWriteOnce(context, n, gTriggerDigitalOutChannel2, LOW); //write the status to the trig pin
    +        }
    +        int pulseLength = pulseIn2.hasPulsed(context, n); // will return the pulse duration(in samples) if a pulse just ended 
    +        float duration = 1e6 * pulseLength / context->digitalSampleRate; // pulse duration in microseconds
    +        static float distance2 = 0;
    +        if(pulseLength >= gMinPulseLength){
    +            static int count = 0;
    +            // rescaling according to the datasheet
    +            distance2 = duration / gRescale;
    +            libpd_float("distance2", distance2);
    +            libpd_bang("foo");
    +            //rt_printf("Sending distance2 to pd\n");
    +            if(count > 5000){ // we do not want to print the value every time we read it
    +                rt_printf("pulseLength: %d, distance2: %fcm\n", pulseLength, distance2);
    +                count -= 5000;
    +            }
    +            ++count;
    +            
    +        }
    +        // Logging to the scope the pulse2 inputs (gEchoDigitalInPin2) and the distance2
    +        scope.log(digitalRead(context, n, gEchoDigitalInPin2), distance2/100);
    +    }    
    +
     	int num;
     #ifdef PARSE_MIDI
     	for(unsigned int port = 0; port < midi.size(); ++port){
    @@ -636,14 +721,6 @@ void render(BelaContext *context, void *userData)
     			dcm.processOutput(&context->digital[digitalFrameBase], gLibpdBlockSize);
     		}
     
    -		// scope output
    -		for (j = 0, p0 = gOutBuf; j < gLibpdBlockSize; ++j, ++p0) {
    -			for (k = 0, p1 = p0 + gLibpdBlockSize * gFirstScopeChannel; k < gScopeChannelsInUse; k++, p1 += gLibpdBlockSize) {
    -				gScopeOut[k] = *p1;
    -			}
    -			scope.log(gScopeOut[0], gScopeOut[1], gScopeOut[2], gScopeOut[3]);
    -		}
    -
     		// audio output
     		for(int n = 0; n < context->audioOutChannels; ++n)
     		{
    @@ -675,3 +752,4 @@ void cleanup(BelaContext *context, void *userData)
     	libpd_closefile(gPatch);
     	delete [] gScopeOut;
     }

    this looks like it should work (although it could be made much more compact).
    One mistake you are doing is that you are logging to the scope twice. You are only supposed to call log() once per sample. In this case your scope output is going to be mostly unusable, but this shouldn't prevent the rest of the core from working correctly.

    So, to apply my earlier suggestion of "enabling only one of the two sensors at a time" in the code, you shall do what follows:

    • to enable only the sensor on channels 0 and 1:
      • comment out the following lines from setup():
          pinMode(context, 0, gTriggerDigitalOutChannel2, OUTPUT); //sending TRIGGER from digital out
          pulseIn2.init(context, gEchoDigitalInPin2, HIGH); //detect HIGH pulses on this pin
      • and the whole second for(unsigned int n = 0; n<context->digitalFrames; n++) block from render().
    • to enable only the sensor on channels 2 and 3:
      • comment out these lines from setup():
         pinMode(context, 0, gTriggerDigitalOutChannel, OUTPUT); //sending TRIGGER from digital out
         pulseIn.init(context, gEchoDigitalInPin, HIGH); //detect HIGH pulses on this pin
      • and the whole first for(unsigned int n = 0; n<context->digitalFrames; n++) block from render().

    Testing:

    1. connect only sensor on channels 0/1, enable only it (as above). Verify it works
    2. connect both sensors. Don't change the code. Verify that the one on 0/1 still works
    3. connect only sensor on channels 2/3, enable only it (as above). Verify it works
    4. connect both sensors. Don't change the code. Verify that the one on 2/3 one still works

    If 2. and 4. fail, then it's most likely a problem of power supply. If all pass, then it's most likely a problem of code.

    20 days later

    Hi again giuliomoro! Thanks a million for this, it's really helpful. Sorry for the slow reply too, I was away for a bit but I'm back on this now.

    Ok so I followed your advice - I tried to enable only one sensor at a time, but when it came to enabling just the second sensor (channels 2/3) I kept running into code errors so I couldn't really properly enable only one sensor at a time (it was probably something I was doing wrong but I didn't want to fiddle with it too much - attached a pic of the errors for reference).

    However when I had both sensors connected, but only the first enabled in the code (channels 0/1), neither sensor worked. So step 2 failed - which I'm assuming means it's a power supply issue, if I've understood that right?

    I'm wondering if it's to do with trying to power both sensors off the analog 5V pin, and if their respective voltage/resistor divider circuits (for the trigger signal) could be messing with it...? This was all done while powering the Bela USB/from my laptop too.

    What do you think?

    alt text

    Right, if step 2 failed then it should mean that it is a power supply issue, although I am surprised that it manifests itself this way, and it's also weird because each sensor only uses 15mA, while that supply rail should have 500mA! Granted, you have the Bela cape and the audio capelet connected as well, but still, you shouldn't be hitting the limit.

    Just checking:
    a- are you still using the 5V from P9.07/P9.08?
    b- what did you do for step 2 above? Did you just connect the second sensor to the power supply, or did you connect its GPIO pins as well? Try to only connect it to the power supply (no GPIO pins) . Does it work?

    Try a couple more things:
    - measure the voltage at P9.07/P9.08 with no sensor connected, with one sensor connected and with two sensors connected.
    - get yourself a 5V power supply. This could be a USB charger, with some sort of cable that allows you to easily break out the power (e.g.: a cable with barrel jack, or simply rip open an existing USB cable and extract the GND and +5V (they should be Black and Red respectively, but double check with a voltmeter). Connect the GND wire to Bela, and then power both sensor between this GND and +5V, but then connect their GPIO pins to Bela as above. DO NOT connect +to Bela the 5V from the power supply. Does this work ?

    Not sure what the error you are getting on your code is, there is not enough information displayed there, but most likely you commented out the opening curly brace { at the top of your comment, but not the closing one } at line 522.

    Thanks a lot for continuing to help crack this puzzle! This has been useful to go through as I've found some "anomalies"? Perhaps...

    I realised as well I should probably clarify that when I say "doesn't work" I mean I'm getting constant "zeros"/no audio reaction on the Bela IDE console readings (instead of data readings/numerical values & reactive audio when the sensor is "working"). Just in case it could be an issue with how the data is being handled rather than the sensor "not working", though it does seem like a power thing or something weird with how I've circuited/hooked up the sensors maybe?

    a- I was using the analog 5V, not P9.07/08!
    b- I connected the sensor fully to Bela (it's vcc/gnd/trig/echo pins) when testing before - is this what you mean by GPIO?

    I tried some multimeter tests and got these results...

    Analog 5V:
    - one sensor connected: 3.5V (working: sends/receives data on Bela IDE console/Pure Data audio reacts)
    - two sensors connected: 2.9V (no data)

    P9.07:
    - one sensor connected: 4.9V (no data - weird?)
    - two sensors connected: 3-4V (no data)

    Not sure if this is weird or a clue - one sensor works/sends data when using the analog 5V, but switch to P9.07 and that sensor stops working. I get a pretty consistent 4.9V reading between P9.07 & GND (Bela pins) and just to be sure I checked on the Sensor Vcc/GND pins and it's about the same.

    Tried your power supply suggestion too, using positive/negative voltages of a USB/barrel jack (with a USB battery pack), running negative to the Bela & sensor, positive just to the sensor, and trigger/echos to BELA (if I've understood this correctly?). I get fairly consistent readings of 3-4.5V, both Bela & sensor don't power on/no reaction.

    RE the code error that's quite likely what I did wrong!

    Does this give you any clues?

      Unicorpse Analog 5V:
      - one sensor connected: 3.5V (working: sends/receives data on Bela IDE console/Pure Data audio reacts)
      - two sensors connected: 2.9V (no data)

      ok this is expected. That pin has 100ohm in series, so the voltage goes down when you connect a load that is too high.

      Unicorpse P9.07:
      - one sensor connected: 4.9V (no data - weird?)
      - two sensors connected: 3-4V (no data)

      Now, this is very weird. One sensor connected should work just fine. Not sure what to say about it, have you tried both sensors (one at a time)? Where do you connect the ground of the sensor? It shouldn't make any difference, but make sure you plug it in P9.01/P9.02.

      Unicorpse Not sure if this is weird or a clue - one sensor works/sends data when using the analog 5V, but switch to P9.07 and that sensor stops working.

      Yeah this is crazy. Also, only now I notice that you wrote this in your first post, apologies for missing it.

      Unicorpse running negative to the Bela & sensor, positive just to the sensor, and trigger/echos to BELA (if I've understood this correctly?).

      Yes.

      Unicorpse I get fairly consistent readings of 3-4.5V

      this sounds pretty weird. You have "consistent" readings between 3V and 4.5V ???

      Unicorpse both Bela & sensor don't power on/no reaction.

      You should still power Bela through the USB port, it wouldn't be powered by the battery in this configuration.

      Thanks a lot! I'm slightly reassured that I'm not the only one finding it weird.

      I'll be back in the studio tomorrow so can come back to this properly then - I'm wondering though is it at all possible that something in the code is preventing the trigger from going, is there a part about voltage "send"?

      there are many ways the code can go wrong 🙂 however, if the sensor is working on the 5V from the analog in header, and it stops working the moment you move it to the 5V supply on P9.07 (without code changes) [which is what my understanding of what is happening to you], then there is definitely something weird, although I would be very surprised if the power management IC just decides to shut down or throttle the 5V supply, with the rest of the board being happy and healthy.

      Can you try removing the audio expander capelet and see if the problem persists?

      Another thing to try: run a regular program which uses audio and analog inputs. Plug in the two sensors between GND and 5V. If you read a voltage lower than 5V there, does that affect the audio and the analog inputs?

      I also have another unorthodox thing to try: what about you just power the HC-SR04 from 3.3V? I know, the datasheet calls for 5V, however you have been successfully running it from 3.5V so far (because of the 100 ohm resistance in series with the output you were using), so it's worth trying if it works fine from 3.3V. When running from 3.3V, you may have to adjust (or remove) the resistor divider for the echo pin, but most likely it'll be fine . DO NOT run it without the resistor divider when you are powering (or trying to power it 🙂 ) from 5V!

      Thanks again Giuliomoro - so I tried the 3.3V and basically went back to basics, even resoldering one of the resistor dividers and trying the different voltage out pins etc, still with no change.

      However and I hope this isn't me being dumb from the very start... But I tried powering one of the sensors from the analog 5V, and the second sensor separately powered from the P9.07 pin - and it worked! (Still resistor divider on each sensor echo out).

      Both sensors are a teeny bit delayed it seems but I'm over the moon that they are both working and sending readable data! I just need to get my Pure Data patch sounding better now ha.

      What do you think? Is this performing as expected - was I supposed to do this from the very start?? Vice versa are there any reasons why I shouldn't do this?

      Thank you so much again for all your help with this - there's no way I would have kept pushing on without your suggestions or support and I've learned a lot in the process.

        Unicorpse - so I tried the 3.3V and basically went back to basics, even resoldering one of the resistor dividers and trying the different voltage out pins etc, still with no change.

        I take it this means that it didn't work powering from 3.3V ? Ok, but that was worth trying.

        Unicorpse However and I hope this isn't me being dumb from the very start... But I tried powering one of the sensors from the analog 5V, and the second sensor separately powered from the P9.07 pin - and it worked! (Still resistor divider on each sensor echo out).

        That does not make any sense, I have no idea what is going on here.

        Unicorpse Both sensors are a teeny bit delayed it seems but I'm over the moon that they are both working and sending readable data! I

        Not sure how any of the above would make any difference in terms of delay, but again, I don't understand what the problem was /is.

        Unicorpse What do you think? Is this performing as expected - was I supposed to do this from the very start?? Vice versa are there any reasons why I shouldn't do this?

        I am very surprised it didn't work otherwise. If it works... good for you! but I am very confused.

        Unicorpse Thank you so much again for all your help with this - there's no way I would have kept pushing on without your suggestions or support and I've learned a lot in the process.

        ha, you are welcome. In the process I lost a lot of confidence in determinism and science 🙂

        Unicorpse But I tried powering one of the sensors from the analog 5V, and the second sensor separately powered from the P9.07 pin - and it worked!

        I mean ... maybe there is one explanation, but it will sound very silly. Let's say you that [for whatever reason], you have exactly 29mA spare current available from the 5V supply. Now:
        - if you connect the two sensors to P9.07, they will draw 30mA total (15mA each) and therefore will not work.
        - If you connect only one sensor at the 5V from the analog out header, this will actually be underpowered at 3.5V, and draw less current, 10.5mA, but nevertheless work.
        - If you connect both sensors there, then the voltage will be so low that they will both stop working (even though they do not exceed the available current).
        - if you plug one on P9.07 and one on the analog out, they will absorb 15mA and 10.5mA respectively, so everything will work fine

        However:

        • I would expect you to have far more than 29mA available on the 5V rail (there should be at least 200mA, I estimate)
        • if you were actually overloading the 5V rail, I would expect the power management IC to just shut down everything.
        • this does not explain why connecting only one sensor to P9.07 does not work.
        • ¯\_(ツ)_/¯
        13 days later

        Hi! Sorry for the slow reply... I've been working away on the project but was meaning to get back to you to talk it through to see if we can't get to the bottom of this mystery 🙂

        However in the meantime a terrible thing has happened (day before installation - wonderful...). I'm not sure how but my render file has completely disappeared from the Bela completely randomly. I remember I had copy and pasted my code onto this thread but that appears to have been edited out. Is it possible to go back through the thread archive to recover the code I copied, so I can copy it back onto the bela please??

        Once this project is over I'd love to go through the possibilities to see what the issue might have been!

        Unicorpse Me again... I'm trying to recreate the custom cpp file but now getting this error:

        ehmm... I posted it above, minutes after your earlier comment.

        giuliomoro Sorry I missed this reply before writing again! Thanks - I'll test that out now

        How do I check the board version?

          Unicorpse How do I check the board version?

          run grep v0 /etc/motd in the console at the bottom of the IDE. Also, do you know when you last updated your core code (if ever?)

          (also, I am going to edit out your code again).

            giuliomoro Sorry, yes my page didn't update before I wrote again in a panic 🙂 I tested that code you linked to and it is working again! Thank you!! Edit away... Got that code saved this time...!

            I do not think I have ever updated my core code! Is there a description of that on the bela guides?

            And on running the version check it's "Bela image, v0.3.6b, 23 October 2018"

            Sound quality is suddenly very bad even though it's running the same PD patch & audio files... Not sure what could have changed there...