no need to pass in scl & sda into screen constructor

This commit is contained in:
geeksville
2020-04-23 13:53:51 -07:00
parent 3e4ccef992
commit ffe95f62ab
3 changed files with 13 additions and 3 deletions

View File

@@ -89,7 +89,7 @@ class DebugInfo
class Screen : public PeriodicTask
{
public:
Screen(uint8_t address, uint8_t sda, uint8_t scl);
Screen(uint8_t address, uint8_t sda = 0, uint8_t scl = 0);
Screen(const Screen &) = delete;
Screen &operator=(const Screen &) = delete;