Hi,
I've recently finished assembling the Pulse Pal 2 and am running into issues pretty much immediately during bench tests; namely that the OLED does not display anything when plugged in. Firmware installation appears to have worked successfully, but the next stage suggests that the Pulse Pal should display its current version number automatically but we get nothing. We have gone through testing connections and soldering with a multimeter and that appears fine, we have switched out the OLED with another and both display the same issue. I have skipped ahead a step and tried to get a response via Python but that runs into another issue:
"""
myPulsePal = PulsePalObject() # Create a new instance of a PulsePal object
myPulsePal.connect('COM4') # Connect to PulsePal on port COM4 (open port, handshake and receive firmware version)
print(myPulsePal.firmwareVersion) # Print firmware version to the console
Traceback (most recent call last):
File "<ipython-input-6-a625e04bf4e6>", line 2, in <module>
myPulsePal.connect('COM4') # Connect to PulsePal on port COM4 (open port, handshake and receive firmware version)
File "PulsePal.py", line 64, in connect
self.firmwareVersion = struct.unpack('<I',fvBytes)[0]
error: unpack requires a string argument of length 4
"""
So I'm not sure if that is a separate issue or related. The only thing I can think of is that we were wrong to cheap out and not buy the SD card/socket. We had theorized if would not be necessary if we only wanted to run the device whilst connected to a computer but were we wrong in that assumption? Any help would be much appreciated.
Best wishes,
Gareth York