|
Post by wheald on Mar 8, 2020 11:00:29 GMT -8
I've received the solar kit for the weather station and everything is going great! I just have one question, I seem to be confused on step 6 of the SolarMAX LiPo Grove Wiring Table. Step 6 has me using Grove Connector Marked D8/D9 on the Mini Pro LP (Part I) and connect to the WatchDog Timer but on step 9 the 20cm Grove connector Marked D8/D9 on the Mini Pro LP (Part I) goes to USB PowerCenteral Control/ Enable Grove Connector. Not sure how to use a port that's already in use by another device? Thank you so much any suggestions you may on this. ![]()
Phase I: Bench test SkyWeather - Complete Phase II: Weather Proof SkyWeaher - Waiting for printed 3D parts - Location Complete
Phase III: Solar - Not started:
Changes: Raspberry Pi 4
On to Phase III:
Attachments:
|
|
|
Post by SDL on Mar 8, 2020 11:05:41 GMT -8
Wow! A Raspberry Pi 4 based SkyWeather. That will smoke! Hopefully not literally.
BP
|
|
|
Post by wheald on Mar 16, 2020 7:03:18 GMT -8
Hi,
While re-testing the box I've ran into this error on the Dust Sensor test. I've checked the service "pigpiod" and its running but when I run the test I receive this:
Traceback (most recent call last): File "testDust.py", line 9, in <module> import pigpio ImportError: No module named pigpio
Re-checked and Re-Seated all connections.
Would anyone have any suggestions?
Thanks so much,
Bill
Phase I: Bench test SkyWeather - Complete Phase II: Weather Proof SkyWeaher - Waiting for printed 3D parts - Location Complete
Phase III: Solar - Not started:
Changes: Raspberry Pi 4 FishEye Camera
|
|
|
Post by SDL on Mar 16, 2020 13:56:58 GMT -8
Clearly, you don't have the pigpio module installed. What happens when you type "pigpiod" to run the daemon?
BP
|
|
|
Post by wheald on Mar 16, 2020 15:57:15 GMT -8
I get this message when I run pigpiod
2020-03-16 16:55:10 initInitialise: Can't lock /var/run/pigpio.pid Can't initialise pigpio library
Did I miss an install in the git software repo?
|
|
|
Post by wheald on Mar 16, 2020 16:07:43 GMT -8
Status of pigpiod servicee daemon:
sudo systemctl status pigpiod ● pigpiod.service - Daemon required to control GPIO pins via pigpio Loaded: loaded (/lib/systemd/system/pigpiod.service; disabled; vendor preset: enabled) Active: active (running) since Mon 2020-03-16 17:06:11 PDT; 2s ago Process: 845 ExecStart=/usr/bin/pigpiod -l (code=exited, status=0/SUCCESS) Main PID: 846 (pigpiod) Tasks: 4 (limit: 4915) Memory: 884.0K CGroup: /system.slice/pigpiod.service └─846 /usr/bin/pigpiod -l
Mar 16 17:06:11 healdweather systemd[1]: Starting Daemon required to control GPIO pins via pigpio. Mar 16 17:06:11 healdweather systemd[1]: Started Daemon required to control GPIO pins via pigpio.
|
|
|
Post by SDL on Mar 16, 2020 17:11:30 GMT -8
You have pigpiod installed. But for some reason you don't have the python libraries installed. I'd look and reinstall pigpio. Kill the existing process (sudo kill -9 845 from above).
sudo apt-get update sudo apt-get install pigpio
BP
|
|