-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Low power / wakeup #19
Comments
Please add some content: Is the low power working or failing? |
The power consumption measurement of MoleNet V6 is attached in the pdf below. print('Im awake. Going to sleep in 10 seconds') ` |
2 mA with LoRa and SD powered up is too high. Please set the LoRa-module into deep sleep mode and check the current drawn by the pull-up resistors. |
I have configured the LoRa module to sleep and measured the current consumption. The results indicate a reduction in current consumption of the LoRa chip (RA-01H) by 2mA during sleep. Please find the attached code and results for reference. `import LoRaSender from config import * device_spi = SoftSPI( Pin(device_config['reset'], Pin.OUT, value=1) print("going to light sleep") lightsleep(10000) # 10 seconds light sleep lora.sleep() # Lora is on sleep mode lightsleep(10000) # 10 seconds light sleep deepsleep(20000) # 20 seconds deep sleep ` |
2mA during sleep for the LoRa transceiver??? |
No description provided.
The text was updated successfully, but these errors were encountered: