We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Thanks for this awesome project, I got this to work without a problem on my Jura F9 machine (7 PIN service port).
Because the Jura F9 machine seems to have a different software coding I hope that this maybe can help some other users:
FA:02 : Wartung / Rinse button FA:06 : 1 Tasse Normal / 1 cup normal button FA:07 : 2 Tassen Normal / 2 cup normal button FA:09 : Milchschaeumer aufheizen / Heat up milk foamer FA:10 : Configure: Staerke - Mild / Touch button select: Mild stength FA:11 : Configure: Staerke - Normal / Touch button select: Medium strength FA:12 : Configure: Staerke - Stark / Touch button select: Strong FA:15 : Reinigungsprogram starten / Start cleaning program FA:18 : Enter Menu (Long press "P") FA:19 : "Start" button FA:0A : Hot Water FA:0B : Pulver Kaffee / Powder Coffee FA:0D : Configure: Grosse Tasse / Large cup FA:0E : Configure: Medium Tasse / Medium cup FA:0F : Configure: Espresso Tasse / Espesso cup
Example of combining commands to make a strong, medium cup of coffee: - uart.write: [0xFB, 0xDF, 0xDB, 0xDF] ## 'F' - delay: 8ms - uart.write: [0xDF, 0xDB, 0xDB, 0xDF] ## 'A' - delay: 8ms - uart.write: [0xFB, 0xFB, 0xFF, 0xDB] ## ':' - delay: 8ms - uart.write: [0xDB, 0xDB, 0xFF, 0xDB] ## '0' - delay: 8ms - uart.write: [0xDF, 0xDF, 0xDB, 0xDF] ## 'E' - delay: 8ms - uart.write: [0xDF, 0xFF, 0xDB, 0xDB] ## '\r' - delay: 8ms - uart.write: [0xFB, 0xFB, 0xDB, 0xDB] ## '\n' - delay: 100ms - uart.write: [0xFB, 0xDF, 0xDB, 0xDF] ## 'F' - delay: 8ms - uart.write: [0xDF, 0xDB, 0xDB, 0xDF] ## 'A' - delay: 8ms - uart.write: [0xFB, 0xFB, 0xFF, 0xDB] ## ':' - delay: 8ms - uart.write: [0xDF, 0xDB, 0xFF, 0xDB] ## '1' - delay: 8ms - uart.write: [0xFB, 0xDB, 0xFF, 0xDB] ## '2' - delay: 8ms - uart.write: [0xDF, 0xFF, 0xDB, 0xDB] ## '\r' - delay: 8ms - uart.write: [0xFB, 0xFB, 0xDB, 0xDB] ## '\n' - delay: 100ms - uart.write: [0xFB, 0xDF, 0xDB, 0xDF] ## 'F' - delay: 8ms - uart.write: [0xDF, 0xDB, 0xDB, 0xDF] ## 'A' - delay: 8ms - uart.write: [0xFB, 0xFB, 0xFF, 0xDB] ## ':' - delay: 8ms - uart.write: [0xDF, 0xDB, 0xFF, 0xDB] ## '1' - delay: 8ms - uart.write: [0xDF, 0xFB, 0xFF, 0xDB] ## '9' - delay: 8ms - uart.write: [0xDF, 0xFF, 0xDB, 0xDB] ## '\r' - delay: 8ms - uart.write: [0xFB, 0xFB, 0xDB, 0xDB] ## '\n'
Hope this helps!
The text was updated successfully, but these errors were encountered:
Thanks for this project!
IMPRESSA X7 codes here:
https://protocol-jura.at.ua/index/commands_for_coffeemaker/0-5
Sorry, something went wrong.
Hey, thanks for the codes! They work flawlessly on the Jura F90 as well.
No branches or pull requests
Thanks for this awesome project, I got this to work without a problem on my Jura F9 machine (7 PIN service port).
Because the Jura F9 machine seems to have a different software coding I hope that this maybe can help some other users:
FA:02 : Wartung / Rinse button
FA:06 : 1 Tasse Normal / 1 cup normal button
FA:07 : 2 Tassen Normal / 2 cup normal button
FA:09 : Milchschaeumer aufheizen / Heat up milk foamer
FA:10 : Configure: Staerke - Mild / Touch button select: Mild stength
FA:11 : Configure: Staerke - Normal / Touch button select: Medium strength
FA:12 : Configure: Staerke - Stark / Touch button select: Strong
FA:15 : Reinigungsprogram starten / Start cleaning program
FA:18 : Enter Menu (Long press "P")
FA:19 : "Start" button
FA:0A : Hot Water
FA:0B : Pulver Kaffee / Powder Coffee
FA:0D : Configure: Grosse Tasse / Large cup
FA:0E : Configure: Medium Tasse / Medium cup
FA:0F : Configure: Espresso Tasse / Espesso cup
Example of combining commands to make a strong, medium cup of coffee:
- uart.write: [0xFB, 0xDF, 0xDB, 0xDF] ## 'F'
- delay: 8ms
- uart.write: [0xDF, 0xDB, 0xDB, 0xDF] ## 'A'
- delay: 8ms
- uart.write: [0xFB, 0xFB, 0xFF, 0xDB] ## ':'
- delay: 8ms
- uart.write: [0xDB, 0xDB, 0xFF, 0xDB] ## '0'
- delay: 8ms
- uart.write: [0xDF, 0xDF, 0xDB, 0xDF] ## 'E'
- delay: 8ms
- uart.write: [0xDF, 0xFF, 0xDB, 0xDB] ## '\r'
- delay: 8ms
- uart.write: [0xFB, 0xFB, 0xDB, 0xDB] ## '\n'
- delay: 100ms
- uart.write: [0xFB, 0xDF, 0xDB, 0xDF] ## 'F'
- delay: 8ms
- uart.write: [0xDF, 0xDB, 0xDB, 0xDF] ## 'A'
- delay: 8ms
- uart.write: [0xFB, 0xFB, 0xFF, 0xDB] ## ':'
- delay: 8ms
- uart.write: [0xDF, 0xDB, 0xFF, 0xDB] ## '1'
- delay: 8ms
- uart.write: [0xFB, 0xDB, 0xFF, 0xDB] ## '2'
- delay: 8ms
- uart.write: [0xDF, 0xFF, 0xDB, 0xDB] ## '\r'
- delay: 8ms
- uart.write: [0xFB, 0xFB, 0xDB, 0xDB] ## '\n'
- delay: 100ms
- uart.write: [0xFB, 0xDF, 0xDB, 0xDF] ## 'F'
- delay: 8ms
- uart.write: [0xDF, 0xDB, 0xDB, 0xDF] ## 'A'
- delay: 8ms
- uart.write: [0xFB, 0xFB, 0xFF, 0xDB] ## ':'
- delay: 8ms
- uart.write: [0xDF, 0xDB, 0xFF, 0xDB] ## '1'
- delay: 8ms
- uart.write: [0xDF, 0xFB, 0xFF, 0xDB] ## '9'
- delay: 8ms
- uart.write: [0xDF, 0xFF, 0xDB, 0xDB] ## '\r'
- delay: 8ms
- uart.write: [0xFB, 0xFB, 0xDB, 0xDB] ## '\n'
Hope this helps!
The text was updated successfully, but these errors were encountered: