blob: 56cdb14b1b153c15ed72c3be0670957ae5925fc5 [file] [log] [blame]
Christopher Wiley2f48d952013-02-22 09:51:47 -08001#!/usr/bin/python
2
3# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7import mm
8
9devices = mm.EnumerateDevices()
10
11for manager, path in devices:
12 print path
13
14 modem = manager.Modem(path)
15
16 modem.Enable(True)