-
Notifications
You must be signed in to change notification settings - Fork 38
Pulse 2000 compatible #14
Comments
If you have an Android device you can scan for UUID codes with this app https://play.google.com/store/apps/details?id=com.macdom.ble.blescanner |
My guess is that these two (or one) lines is needed for the internal temperature probe in igrill.py #Pulse 2000? havent seen these actual values, just an educated guess with C and D |
The 4 probes are the same UUID as the standard igrill. The main heating element temperatures and setpoint are communicated on UUID 6c91000a-58dc-41c7-943f-518b278ceaaa. The return example is 20 30 32 30 20 30 31 35 20 30 30 30 20 30 30 30 which can be converted HextoASCII into "020 015 000 000" which can be read as actual temp left element, right element. Temp setpoint left right. Authentication is not working and thus I cannot read the probe temperatures so I need to figure out how to debug that, any tips? |
Hi |
Yeah I'm not experienced with Python so I'm figuring it out as I go through here. It gets stuck after sending key of all 0's (that is a message with debug on). It just never moves past that. The code i'm using for now is just exactly your code with this for the device.yaml: `
Can you help modify the code to check the extra UUID for the central heating zones actual temperature and setpoints? Also if we specify the pulse device we can disable the battery check. I have ordered a BLE sniffer (Adafruit Bluefruit) so maybe I can use that to figure out the authentication method. |
That sound like the same issue as "Getting stuck at authenticating" Have you tried to use bluetoothctl to pair the iGrill first? |
Commenting out that line in the udev rules fixed the authentication, now to figure out how to read that main temperature :) |
Got it to work :) |
Pull request #16 |
I have merged the PR to https://github.com/bendikwa/igrill/tree/pulse2000_support and refactored the code a bit. Can you test to see that it still works? Does the Pulse 2000 have a battery indicator? Or should we remove that? -Bendik |
That code looks much nicer, thanks :) |
Tested, working great! `
|
On a seperate thought, since it only publishes a probe temp when it is connected it means that the non-connected probe's stay at the temperature they had the last time they were connected making it harder to see which are reporting. Should we tweak the temp reporting from the probes to just send a 0 or . when the 65356 value is read from the probes? |
Great! I'll merge the Pulse 2000 support to master. Regarding your two other suggestions:
|
Merged to master |
Awesome work, thank!
I have a Weber Pulse 2000 electric grill which has the temp probes built in. What data do I need to capture from my grill to integrate it in this code and make it work?
The text was updated successfully, but these errors were encountered: