-
Sara Damiano replied to the topic PlatormIO: ..Python 2.7 interpreter error in the forum Mayfly Data Logger 4 years, 10 months ago
The platformio.ini file is just a text file. If you can open it and view it, it’s not corrupted.
The commands I gave you should accomplish getting the libraries installed. Sometimes when installing a lot of libraries the installer gets ahead of itself and trips and crashes. Most of the time, running the command a second time will be su…[Read more]
-
Sara Damiano replied to the topic Editing Variable UUIDs in the forum Monitor My Watershed 4 years, 10 months ago
Here’s your program that compiled correctly for me.
-
Sara Damiano replied to the topic Editing Variable UUIDs in the forum Monitor My Watershed 4 years, 10 months ago
Well, it really is that “easy.” “All” you do have to do is create a new project/program, make sure it’s completely blank, copy and paste the example from GitHub into your new project, select precisely each UUID and delete the example junk text, select and copy the real UUID from the MonitorMW webpage and paste it in exactly the place you removed…[Read more]
-
Sara Damiano replied to the topic Connecting to Verizon in the forum Mayfly Data Logger 4 years, 10 months ago
Let us know how the Verizon SIMs work for you!
-
Matt Barney replied to the topic Connecting to Verizon in the forum Mayfly Data Logger 4 years, 10 months ago
Thanks Sara. I managed to get the forbidden list displayed, and cleared. Not certain what I was doing wrong before.
If I remain in the Console and continue querying, the forbidden list will get repopulated after 15-30 seconds. The response is:
+CRSM: 144,0,"130184FFFFFFFFFFFFFFFFFF" OK
So, assuming that that value decodes to MCC=311 and MNO=480,…[Read more]
-
jbiddle replied to the topic Editing Variable UUIDs in the forum Monitor My Watershed 4 years, 10 months ago
I’m catching on to that! I’m now faced with a new series of errors – “expected constructor, destructor, or type conversion before ‘(‘ token” is coming up on several different lines. I attached the new error message.
It’s obvious that the code is just missing various braces, brackets, semicolons and the like. I was under the impression that I…[Read more]
-
Jim Moore replied to the topic PlatormIO: ..Python 2.7 interpreter error in the forum Mayfly Data Logger 4 years, 10 months ago
Ok, I will try this. If that doesn’t work shall I delete “LearnEnviroDIYcode-master” that I downloaded in case the platform.ini file is corrupted? Or should the above steps accomplish the same thing?
Each time I attempt to compile I get “looking for xxx.h dependency? Check your Library registry!” The missing .h file is different each time I a…[Read more]
-
Sara Damiano replied to the topic Editing Variable UUIDs in the forum Monitor My Watershed 4 years, 10 months ago
In line 239/240 you’re missing the opening brace of the setup function. It should be
void setup() {
with that opening curly brace. You can put the curly brace right after the parenthesis on line 239 or by itself on line 240.
Also, your code is missing the “loop()” function – it will set everything up and then do nothing. You probably want to…[Read more]
-
Sara Damiano replied to the topic PlatormIO: ..Python 2.7 interpreter error in the forum Mayfly Data Logger 4 years, 10 months ago
You didn’t post the screenshot of the
pio lib install
so I’m not sure what’s happening there.
Try installing the libraries one after the other using these commands:
pio lib install EnviroDIY_ModularSensors
pio lib install https://github.com/PaulStroffregen/AltSoftSerial.git
pio lib install https://github.com/SRGDamia1/NeoSWSerial.git
pio lib…
[Read more] -
jbiddle replied to the topic Editing Variable UUIDs in the forum Monitor My Watershed 4 years, 10 months ago
Thank you Sarah, I managed to fix those issues.
I’ve attached the most recent error message and the code as it exists right now. The first “serial” that it mentions in the error on line 242 is the first “serial” under the Main Setup Function section of the code. It doesn’t look like I’m missing any closing braces so I’m not sure what the issue is…[Read more]
-
Jim Moore replied to the topic PlatormIO: ..Python 2.7 interpreter error in the forum Mayfly Data Logger 4 years, 10 months ago
screen shot
-
Jim Moore replied to the topic PlatormIO: ..Python 2.7 interpreter error in the forum Mayfly Data Logger 4 years, 10 months ago
I ran the “pio lib install” command and got the following:
Try to find answer in FAQ Troubleshooting section
https://docs.platformio.org/page/faq.html
* Report this problem to the developers
https://github.com/platformio/platformio-core/issuesCompile fails: “looking for Adafruit_sensor.h” and a couple of days ago compile was failing looking…[Read more]
-
Evan replied to the topic MMW Plotting Issues in the forum Mayfly Data Logger 4 years, 10 months ago
Thanks for the response and the heads up
Good Luck! -
Anthony Aufdenkampe replied to the topic MMW Plotting Issues in the forum Mayfly Data Logger 4 years, 10 months ago
Hi @Evan, thanks for the heads up that Sparkling plots and Time Series Analyst are not connecting to the database. The data are safe, it’s just a connection issue for the visualization tools. You can follow our progress on the Hot Fix here: https://github.com/ODM2/ODM2DataSharingPortal/issues/473
-
Sara Damiano replied to the topic PlatormIO: ..Python 2.7 interpreter error in the forum Mayfly Data Logger 4 years, 10 months ago
As a beginner, I would suggest you pick either Atom OR VS Code – whichever one feels most intuitive to you – and use that one exclusively rather than attempting to flip back and forth between them. Both editors will give you exactly the same tools for PlatformIO, but the menus and drop-downs and styling are different. Rather than try to to r…[Read more]
-
Sara Damiano replied to the topic PlatormIO: ..Python 2.7 interpreter error in the forum Mayfly Data Logger 4 years, 10 months ago
Copying only an h file into your directory is *not* the proper way to install a library. You should list the library in the “lib_deps” section of your platformio.ini and run the command
pio lib install
which should install the libraries listed in that section and their dependencies or you can install a single library with the command
pio lib…
[Read more] -
Sara Damiano replied to the topic PlatormIO: ..Python 2.7 interpreter error in the forum Mayfly Data Logger 4 years, 10 months ago
pio lib uninstall xxx
would mean “uninstall the library named xxx”. You’d replace the “xxx” with the name of whatever library you’re trying to uninstall. All of the documentation and examples use “xxx” meaning “replace this part with your own text”.I put up screen shots with the locations of buttons to open a new terminal.
-
Evan started the topic MMW Plotting Issues in the forum Mayfly Data Logger 4 years, 10 months ago
Hey Everyone
Has anyone else noticed an issue with MMW? It seems that no data is being saved, as plotting is unavailable. Though, the most recent measurements seem legitimate.
I looked at some other stations, and the data issue is reflected there as well.Is this the best place for this post? Is there another forum that MMW talk fits…[Read more]
-
Jim Moore replied to the topic PlatormIO: ..Python 2.7 interpreter error in the forum Mayfly Data Logger 4 years, 10 months ago
I figured out how to get terminal which is the sketch output window. Took a while to realize that the .ini file overides the terminal settings and was at the wrong baud rate to test output from my set RTC sketch.
I copied a SODAQ…h file to “lib” when the compiler was looking for that.
Next step is
pio lib uninstall xxx
but not sure what x…[Read more] -
Jim Moore replied to the topic PlatormIO: ..Python 2.7 interpreter error in the forum Mayfly Data Logger 4 years, 10 months ago
I have platformIO working with atom and get a compile error with the blink example. I checked https://github.com/EnviroDIY/ModularSensors/issues/247 opened a terminal but get a bash script error with “pio lib update”
How to I get to the terminal in atom?
attached a screen shot
- Load More