- Dozować odkamieniacz w płynie zgodnie z danymiproducenta, wlewając go do zbiornika na wodę.
- Nacisnąć krótko przycisk CALC. Czerwona dioda LED zaczyna migać.
- Na wyświetlaczu pojawia się naprzemiennie godzina i "CALC".
- Proces odkamieniania odbywa się dalej automatycznie. Aby można było usunąć nawet grubą warstwę kamienia, czas cyklu odkamieniania trwa ok. 25 minut.
- UWAGA: Jedynie całkowity, ukończony cykl odkamieniania pozwala usunąć wszelkie pozostałości kamienia. Dopiero wtedy gaśnie lampka LED CALC. Dlatego nie wolno przerywać procesu odkamie niania.
- Po całkowitym ukończeniu procesu odkamieniania dioda w przycisku CALC gaśnie. Urządzenie wyłącza się automatycznie.
- Aby całkowicie usunąć resztki odkamieniacza, po zakończeniu cyklu odkamieniania należy włączyć urządzenie dwukrotnie z maksymalną ilością wody, bez kawy.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class RepositoriesRecyclerAdapter extends RecyclerView.Adapter<RepositoriesRecyclerAdapter.RepoViewHolder> { | |
| private final RepositoriesListPresenter presenter; | |
| public RepositoriesRecyclerAdapter(RepositoriesListPresenter repositoriesPresenter) { | |
| this.presenter = repositoriesPresenter; | |
| } | |
| @Override | |
| public RepositoryViewHolder onCreateViewHolder(ViewGroup parent, int viewType) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class RepositoryViewHolder extends RecyclerView.ViewHolder implements RepositoryRowView { | |
| TextView titleTextView; | |
| TextView starsCountTextView; | |
| public RepositoryViewHolder(View itemView) { | |
| super(itemView); | |
| titleTextView = itemView.findViewById(R.id.repoTitleText); | |
| starsCountTextView = itemView.findViewById(R.id.repoStarsCountText); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class RepositoriesListPresenter { | |
| private final List<Repository> repositories; | |
| ... | |
| public void onBindRepositoryRowViewAtPosition(int position, RepositoryRowView rowView) { | |
| Repository repo = repositories.get(position); | |
| rowView.setStarCount(repo.getStarsCount()); | |
| rowView.setTitle(repo.getTitle()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| interface RepositoryRowView { | |
| void setTitle(String title); | |
| void setStarCount(int starCount); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Verifying my Blockstack ID is secured with the address 1CuVJaDmpGSZQn2ZagU9T2ysabMKXYW4cE https://explorer.blockstack.org/address/1CuVJaDmpGSZQn2ZagU9T2ysabMKXYW4cE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| class ExpandablePageView extends StatefulWidget { | |
| final List<Widget> children; | |
| const ExpandablePageView({ | |
| Key key, | |
| @required this.children, | |
| }) : super(key: key); |
OlderNewer