From 0c2359b8c457c5ede79596b98e569d8baa58826e Mon Sep 17 00:00:00 2001 From: Andy Liu Date: Mon, 2 Dec 2024 12:34:49 +0700 Subject: [PATCH] Add develop branch Signed-off-by: Andy Liu --- Examples/MakerKit/Mission10_Humiture_Sensor/Package.swift | 4 ++-- .../MakerKit/Mission11_Reproduce_Mission10/Package.swift | 6 +++--- Examples/MakerKit/Mission12_Buzzer_Music/Package.swift | 6 +++--- Examples/MakerKit/Mission1_Blink/Package.swift | 4 ++-- Examples/MakerKit/Mission2_RGB_LED/Package.swift | 4 ++-- Examples/MakerKit/Mission3_Push_Button/Package.swift | 4 ++-- Examples/MakerKit/Mission4_Potentiometer_RGB/Package.swift | 4 ++-- Examples/MakerKit/Mission5_Buzzer/Package.swift | 4 ++-- .../MakerKit/Mission6_Seven_Segment_Display/Package.swift | 4 ++-- Examples/MakerKit/Mission7_DC_Motors/Package.swift | 4 ++-- Examples/MakerKit/Mission8_Servo_Motor/Package.swift | 4 ++-- Examples/MakerKit/Mission9_LCD/Package.swift | 4 ++-- Examples/SwiftIOPlayground/01LED/LEDBlink/Package.swift | 4 ++-- .../SwiftIOPlayground/01LED/LEDBlinkWithTimer/Package.swift | 4 ++-- Examples/SwiftIOPlayground/01LED/LEDMorseCode/Package.swift | 4 ++-- Examples/SwiftIOPlayground/01LED/RGBLED/Package.swift | 4 ++-- .../02Button/ButtonInterrupt/Package.swift | 4 ++-- .../02Button/MomentaryLEDSwitch/Package.swift | 4 ++-- .../SwiftIOPlayground/02Button/OnOffButtons/Package.swift | 4 ++-- .../02Button/ToggleLEDSwitch/Package.swift | 4 ++-- .../02Button/TwoWayLEDSwitches/Package.swift | 4 ++-- .../SwiftIOPlayground/03Buzzer/BreathingLED/Package.swift | 4 ++-- .../SwiftIOPlayground/03Buzzer/ButtonDimmer/Package.swift | 4 ++-- .../03Buzzer/LEDPatternChange/Package.swift | 4 ++-- .../SwiftIOPlayground/03Buzzer/PlayingScale/Package.swift | 4 ++-- .../SwiftIOPlayground/03Buzzer/ReflexGame/Package.swift | 4 ++-- .../04Potentiometer/DoubleLEDDimmer/Package.swift | 4 ++-- .../04Potentiometer/LEDBlinkControl/Package.swift | 4 ++-- .../04Potentiometer/LEDDimmer/Package.swift | 4 ++-- .../04Potentiometer/PitchControl/Package.swift | 4 ++-- .../04Potentiometer/PlayingTones/Package.swift | 4 ++-- .../04Potentiometer/Potentiometer/Package.swift | 4 ++-- .../05Humiture/AverageTemperature/Package.swift | 6 +++--- .../SwiftIOPlayground/05Humiture/Humiture/Package.swift | 6 +++--- Examples/SwiftIOPlayground/06RTC/Alarm/Package.swift | 6 +++--- .../SwiftIOPlayground/06RTC/BlinkUsingRTC/Package.swift | 6 +++--- Examples/SwiftIOPlayground/06RTC/ReadingTime/Package.swift | 6 +++--- .../07Accelerometer/Accelerometer/Package.swift | 6 +++--- .../07Accelerometer/AccelerometerDice/Package.swift | 6 +++--- .../07Accelerometer/AccelerometerLock/Package.swift | 6 +++--- .../08LCD/AccelerationVisualizer/Package.swift | 6 +++--- .../SwiftIOPlayground/08LCD/AnalogVisualizer/Package.swift | 6 +++--- Examples/SwiftIOPlayground/08LCD/LCD/Package.swift | 6 +++--- Examples/SwiftIOPlayground/08LCD/Rainbow/Package.swift | 6 +++--- Examples/SwiftIOPlayground/08LCD/ScrollEffect/Package.swift | 6 +++--- .../SwiftIOPlayground/09Speaker/MusicPlayer/Package.swift | 4 ++-- Examples/SwiftIOPlayground/09Speaker/Speaker/Package.swift | 4 ++-- .../10UART/RemoteLEDSwitch/Button/Package.swift | 4 ++-- .../10UART/RemoteLEDSwitch/LED/Package.swift | 4 ++-- Examples/SwiftIOPlayground/10UART/SerialEcho/Package.swift | 4 ++-- .../SwiftIOPlayground/10UART/SerialLEDSwitch/Package.swift | 4 ++-- Examples/SwiftIOPlayground/11WiFi/JoiningWiFi/Package.swift | 6 +++--- .../11WiFi/TemperatureDataLogger/Package.swift | 6 +++--- Examples/SwiftIOPlayground/12FileSystem/Album/Package.swift | 6 +++--- .../12FileSystem/ReadingFiles/Package.swift | 6 +++--- .../12FileSystem/WritingCSVFile/Package.swift | 6 +++--- .../13MoreProjects/FallingSand/Package.swift | 6 +++--- .../SwiftIOPlayground/13MoreProjects/LifeGame/Package.swift | 6 +++--- .../13MoreProjects/MorseCode/Package.swift | 4 ++-- .../13MoreProjects/MovingBall/Package.swift | 6 +++--- .../SwiftIOPlayground/13MoreProjects/Pong/Package.swift | 6 +++--- .../SwiftIOPlayground/13MoreProjects/Prank/Package.swift | 6 +++--- .../SwiftIOPlayground/13MoreProjects/Snake/Package.swift | 6 +++--- .../13MoreProjects/TicTacToe/Package.swift | 6 +++--- 64 files changed, 155 insertions(+), 155 deletions(-) diff --git a/Examples/MakerKit/Mission10_Humiture_Sensor/Package.swift b/Examples/MakerKit/Mission10_Humiture_Sensor/Package.swift index e4f0b87..ca5b03f 100644 --- a/Examples/MakerKit/Mission10_Humiture_Sensor/Package.swift +++ b/Examples/MakerKit/Mission10_Humiture_Sensor/Package.swift @@ -5,8 +5,8 @@ let package = Package( name: "Mission10_Humiture_Sensor", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/MakerKit/Mission11_Reproduce_Mission10/Package.swift b/Examples/MakerKit/Mission11_Reproduce_Mission10/Package.swift index 726157b..b5e1baf 100644 --- a/Examples/MakerKit/Mission11_Reproduce_Mission10/Package.swift +++ b/Examples/MakerKit/Mission11_Reproduce_Mission10/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "Mission11_Reproduce_Mission10", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/MakerKit/Mission12_Buzzer_Music/Package.swift b/Examples/MakerKit/Mission12_Buzzer_Music/Package.swift index 7613716..734c314 100644 --- a/Examples/MakerKit/Mission12_Buzzer_Music/Package.swift +++ b/Examples/MakerKit/Mission12_Buzzer_Music/Package.swift @@ -5,9 +5,9 @@ let package = Package( name: "Mission12_Buzzer_Music", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/PWMTone.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/PWMTone.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/MakerKit/Mission1_Blink/Package.swift b/Examples/MakerKit/Mission1_Blink/Package.swift index dc1b9df..8335c9d 100644 --- a/Examples/MakerKit/Mission1_Blink/Package.swift +++ b/Examples/MakerKit/Mission1_Blink/Package.swift @@ -5,8 +5,8 @@ let package = Package( name: "Mission1_Blink", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/MakerKit/Mission2_RGB_LED/Package.swift b/Examples/MakerKit/Mission2_RGB_LED/Package.swift index ece9853..60a8fd2 100644 --- a/Examples/MakerKit/Mission2_RGB_LED/Package.swift +++ b/Examples/MakerKit/Mission2_RGB_LED/Package.swift @@ -5,8 +5,8 @@ let package = Package( name: "Mission2_RGB_LED", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/MakerKit/Mission3_Push_Button/Package.swift b/Examples/MakerKit/Mission3_Push_Button/Package.swift index 879bbc5..7a2b3c2 100644 --- a/Examples/MakerKit/Mission3_Push_Button/Package.swift +++ b/Examples/MakerKit/Mission3_Push_Button/Package.swift @@ -5,8 +5,8 @@ let package = Package( name: "Mission3_Push_Button", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/MakerKit/Mission4_Potentiometer_RGB/Package.swift b/Examples/MakerKit/Mission4_Potentiometer_RGB/Package.swift index 65cdb57..6cd5b71 100644 --- a/Examples/MakerKit/Mission4_Potentiometer_RGB/Package.swift +++ b/Examples/MakerKit/Mission4_Potentiometer_RGB/Package.swift @@ -5,8 +5,8 @@ let package = Package( name: "Mission4_Potentiometer_RGB", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/MakerKit/Mission5_Buzzer/Package.swift b/Examples/MakerKit/Mission5_Buzzer/Package.swift index 3338b07..9234587 100644 --- a/Examples/MakerKit/Mission5_Buzzer/Package.swift +++ b/Examples/MakerKit/Mission5_Buzzer/Package.swift @@ -5,8 +5,8 @@ let package = Package( name: "Mission5_Buzzer", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/MakerKit/Mission6_Seven_Segment_Display/Package.swift b/Examples/MakerKit/Mission6_Seven_Segment_Display/Package.swift index 54d1454..c2d1ef2 100644 --- a/Examples/MakerKit/Mission6_Seven_Segment_Display/Package.swift +++ b/Examples/MakerKit/Mission6_Seven_Segment_Display/Package.swift @@ -5,8 +5,8 @@ let package = Package( name: "Mission6_Seven_Segment_Display", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/MakerKit/Mission7_DC_Motors/Package.swift b/Examples/MakerKit/Mission7_DC_Motors/Package.swift index dfec8d1..f8b9357 100644 --- a/Examples/MakerKit/Mission7_DC_Motors/Package.swift +++ b/Examples/MakerKit/Mission7_DC_Motors/Package.swift @@ -5,8 +5,8 @@ let package = Package( name: "Mission7_DC_Motors", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/MakerKit/Mission8_Servo_Motor/Package.swift b/Examples/MakerKit/Mission8_Servo_Motor/Package.swift index b14e071..03f689b 100644 --- a/Examples/MakerKit/Mission8_Servo_Motor/Package.swift +++ b/Examples/MakerKit/Mission8_Servo_Motor/Package.swift @@ -5,8 +5,8 @@ let package = Package( name: "Mission8_Servo_Motor", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/MakerKit/Mission9_LCD/Package.swift b/Examples/MakerKit/Mission9_LCD/Package.swift index 0574b26..5f56678 100644 --- a/Examples/MakerKit/Mission9_LCD/Package.swift +++ b/Examples/MakerKit/Mission9_LCD/Package.swift @@ -5,8 +5,8 @@ let package = Package( name: "Mission9_LCD", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Examples/SwiftIOPlayground/01LED/LEDBlink/Package.swift b/Examples/SwiftIOPlayground/01LED/LEDBlink/Package.swift index 0597e1e..9670729 100644 --- a/Examples/SwiftIOPlayground/01LED/LEDBlink/Package.swift +++ b/Examples/SwiftIOPlayground/01LED/LEDBlink/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "LEDBlink", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/01LED/LEDBlinkWithTimer/Package.swift b/Examples/SwiftIOPlayground/01LED/LEDBlinkWithTimer/Package.swift index 9c5f1b4..2ee87aa 100644 --- a/Examples/SwiftIOPlayground/01LED/LEDBlinkWithTimer/Package.swift +++ b/Examples/SwiftIOPlayground/01LED/LEDBlinkWithTimer/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "LEDBlinkWithTimer", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/01LED/LEDMorseCode/Package.swift b/Examples/SwiftIOPlayground/01LED/LEDMorseCode/Package.swift index 357cfd6..fd32ecb 100644 --- a/Examples/SwiftIOPlayground/01LED/LEDMorseCode/Package.swift +++ b/Examples/SwiftIOPlayground/01LED/LEDMorseCode/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "LEDMorseCode", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/01LED/RGBLED/Package.swift b/Examples/SwiftIOPlayground/01LED/RGBLED/Package.swift index 2e28844..5bcc4da 100644 --- a/Examples/SwiftIOPlayground/01LED/RGBLED/Package.swift +++ b/Examples/SwiftIOPlayground/01LED/RGBLED/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "RGBLED", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/02Button/ButtonInterrupt/Package.swift b/Examples/SwiftIOPlayground/02Button/ButtonInterrupt/Package.swift index 64921f4..1bca035 100644 --- a/Examples/SwiftIOPlayground/02Button/ButtonInterrupt/Package.swift +++ b/Examples/SwiftIOPlayground/02Button/ButtonInterrupt/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "ButtonInterrupt", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/02Button/MomentaryLEDSwitch/Package.swift b/Examples/SwiftIOPlayground/02Button/MomentaryLEDSwitch/Package.swift index f896a21..076f8d3 100644 --- a/Examples/SwiftIOPlayground/02Button/MomentaryLEDSwitch/Package.swift +++ b/Examples/SwiftIOPlayground/02Button/MomentaryLEDSwitch/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "MomentaryLEDSwitch", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/02Button/OnOffButtons/Package.swift b/Examples/SwiftIOPlayground/02Button/OnOffButtons/Package.swift index 10f9aa2..6fd4a51 100644 --- a/Examples/SwiftIOPlayground/02Button/OnOffButtons/Package.swift +++ b/Examples/SwiftIOPlayground/02Button/OnOffButtons/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "OnOffButtons", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/02Button/ToggleLEDSwitch/Package.swift b/Examples/SwiftIOPlayground/02Button/ToggleLEDSwitch/Package.swift index e4b5d06..3ef347d 100644 --- a/Examples/SwiftIOPlayground/02Button/ToggleLEDSwitch/Package.swift +++ b/Examples/SwiftIOPlayground/02Button/ToggleLEDSwitch/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "ToggleLEDSwitch", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/02Button/TwoWayLEDSwitches/Package.swift b/Examples/SwiftIOPlayground/02Button/TwoWayLEDSwitches/Package.swift index 114aa05..157f47f 100644 --- a/Examples/SwiftIOPlayground/02Button/TwoWayLEDSwitches/Package.swift +++ b/Examples/SwiftIOPlayground/02Button/TwoWayLEDSwitches/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "TwoWayLEDSwitches", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/03Buzzer/BreathingLED/Package.swift b/Examples/SwiftIOPlayground/03Buzzer/BreathingLED/Package.swift index bc3148b..2c72645 100644 --- a/Examples/SwiftIOPlayground/03Buzzer/BreathingLED/Package.swift +++ b/Examples/SwiftIOPlayground/03Buzzer/BreathingLED/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "BreathingLED", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/03Buzzer/ButtonDimmer/Package.swift b/Examples/SwiftIOPlayground/03Buzzer/ButtonDimmer/Package.swift index 193c6a9..3e9bcd4 100644 --- a/Examples/SwiftIOPlayground/03Buzzer/ButtonDimmer/Package.swift +++ b/Examples/SwiftIOPlayground/03Buzzer/ButtonDimmer/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "ButtonDimmer", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/03Buzzer/LEDPatternChange/Package.swift b/Examples/SwiftIOPlayground/03Buzzer/LEDPatternChange/Package.swift index 47fbf19..4e099a1 100644 --- a/Examples/SwiftIOPlayground/03Buzzer/LEDPatternChange/Package.swift +++ b/Examples/SwiftIOPlayground/03Buzzer/LEDPatternChange/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "LEDPatternChange", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/03Buzzer/PlayingScale/Package.swift b/Examples/SwiftIOPlayground/03Buzzer/PlayingScale/Package.swift index a872bbb..655c0ce 100644 --- a/Examples/SwiftIOPlayground/03Buzzer/PlayingScale/Package.swift +++ b/Examples/SwiftIOPlayground/03Buzzer/PlayingScale/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "PlayingScale", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/03Buzzer/ReflexGame/Package.swift b/Examples/SwiftIOPlayground/03Buzzer/ReflexGame/Package.swift index c019f02..0d4d5b6 100644 --- a/Examples/SwiftIOPlayground/03Buzzer/ReflexGame/Package.swift +++ b/Examples/SwiftIOPlayground/03Buzzer/ReflexGame/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "ReflexGame", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/04Potentiometer/DoubleLEDDimmer/Package.swift b/Examples/SwiftIOPlayground/04Potentiometer/DoubleLEDDimmer/Package.swift index de3f1dd..ff897d7 100644 --- a/Examples/SwiftIOPlayground/04Potentiometer/DoubleLEDDimmer/Package.swift +++ b/Examples/SwiftIOPlayground/04Potentiometer/DoubleLEDDimmer/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "DoubleLEDDimmer", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/04Potentiometer/LEDBlinkControl/Package.swift b/Examples/SwiftIOPlayground/04Potentiometer/LEDBlinkControl/Package.swift index c8f3438..dc2752c 100644 --- a/Examples/SwiftIOPlayground/04Potentiometer/LEDBlinkControl/Package.swift +++ b/Examples/SwiftIOPlayground/04Potentiometer/LEDBlinkControl/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "LEDBlinkControl", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/04Potentiometer/LEDDimmer/Package.swift b/Examples/SwiftIOPlayground/04Potentiometer/LEDDimmer/Package.swift index 8479553..f32a831 100644 --- a/Examples/SwiftIOPlayground/04Potentiometer/LEDDimmer/Package.swift +++ b/Examples/SwiftIOPlayground/04Potentiometer/LEDDimmer/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "LEDDimmer", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/04Potentiometer/PitchControl/Package.swift b/Examples/SwiftIOPlayground/04Potentiometer/PitchControl/Package.swift index 2d4d390..b3ff798 100644 --- a/Examples/SwiftIOPlayground/04Potentiometer/PitchControl/Package.swift +++ b/Examples/SwiftIOPlayground/04Potentiometer/PitchControl/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "PitchControl", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/04Potentiometer/PlayingTones/Package.swift b/Examples/SwiftIOPlayground/04Potentiometer/PlayingTones/Package.swift index 45b740d..9ba74ff 100644 --- a/Examples/SwiftIOPlayground/04Potentiometer/PlayingTones/Package.swift +++ b/Examples/SwiftIOPlayground/04Potentiometer/PlayingTones/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "PlayingTones", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/04Potentiometer/Potentiometer/Package.swift b/Examples/SwiftIOPlayground/04Potentiometer/Potentiometer/Package.swift index 700faa1..468dfbb 100644 --- a/Examples/SwiftIOPlayground/04Potentiometer/Potentiometer/Package.swift +++ b/Examples/SwiftIOPlayground/04Potentiometer/Potentiometer/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "Potentiometer", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/05Humiture/AverageTemperature/Package.swift b/Examples/SwiftIOPlayground/05Humiture/AverageTemperature/Package.swift index f4c6740..8e7b495 100644 --- a/Examples/SwiftIOPlayground/05Humiture/AverageTemperature/Package.swift +++ b/Examples/SwiftIOPlayground/05Humiture/AverageTemperature/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "AverageTemperature", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/05Humiture/Humiture/Package.swift b/Examples/SwiftIOPlayground/05Humiture/Humiture/Package.swift index 8663e8c..86b1748 100644 --- a/Examples/SwiftIOPlayground/05Humiture/Humiture/Package.swift +++ b/Examples/SwiftIOPlayground/05Humiture/Humiture/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "Humiture", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/06RTC/Alarm/Package.swift b/Examples/SwiftIOPlayground/06RTC/Alarm/Package.swift index 46cd9c0..833f4c6 100644 --- a/Examples/SwiftIOPlayground/06RTC/Alarm/Package.swift +++ b/Examples/SwiftIOPlayground/06RTC/Alarm/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "Alarm", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/06RTC/BlinkUsingRTC/Package.swift b/Examples/SwiftIOPlayground/06RTC/BlinkUsingRTC/Package.swift index 0fa94ee..f06fcf6 100644 --- a/Examples/SwiftIOPlayground/06RTC/BlinkUsingRTC/Package.swift +++ b/Examples/SwiftIOPlayground/06RTC/BlinkUsingRTC/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "BlinkUsingRTC", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/06RTC/ReadingTime/Package.swift b/Examples/SwiftIOPlayground/06RTC/ReadingTime/Package.swift index 20c6525..5a416a2 100644 --- a/Examples/SwiftIOPlayground/06RTC/ReadingTime/Package.swift +++ b/Examples/SwiftIOPlayground/06RTC/ReadingTime/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "ReadingTime", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/07Accelerometer/Accelerometer/Package.swift b/Examples/SwiftIOPlayground/07Accelerometer/Accelerometer/Package.swift index 9ee6962..7888067 100644 --- a/Examples/SwiftIOPlayground/07Accelerometer/Accelerometer/Package.swift +++ b/Examples/SwiftIOPlayground/07Accelerometer/Accelerometer/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "Accelerometer", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/07Accelerometer/AccelerometerDice/Package.swift b/Examples/SwiftIOPlayground/07Accelerometer/AccelerometerDice/Package.swift index 05834bd..818b2c2 100644 --- a/Examples/SwiftIOPlayground/07Accelerometer/AccelerometerDice/Package.swift +++ b/Examples/SwiftIOPlayground/07Accelerometer/AccelerometerDice/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "AccelerometerDice", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/07Accelerometer/AccelerometerLock/Package.swift b/Examples/SwiftIOPlayground/07Accelerometer/AccelerometerLock/Package.swift index 28f9e23..d44cc66 100644 --- a/Examples/SwiftIOPlayground/07Accelerometer/AccelerometerLock/Package.swift +++ b/Examples/SwiftIOPlayground/07Accelerometer/AccelerometerLock/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "AccelerometerLock", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/08LCD/AccelerationVisualizer/Package.swift b/Examples/SwiftIOPlayground/08LCD/AccelerationVisualizer/Package.swift index 0fcedfc..acdba3c 100644 --- a/Examples/SwiftIOPlayground/08LCD/AccelerationVisualizer/Package.swift +++ b/Examples/SwiftIOPlayground/08LCD/AccelerationVisualizer/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "AccelerationVisualizer", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/08LCD/AnalogVisualizer/Package.swift b/Examples/SwiftIOPlayground/08LCD/AnalogVisualizer/Package.swift index deaf2ee..00f97b4 100644 --- a/Examples/SwiftIOPlayground/08LCD/AnalogVisualizer/Package.swift +++ b/Examples/SwiftIOPlayground/08LCD/AnalogVisualizer/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "AnalogVisualizer", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/08LCD/LCD/Package.swift b/Examples/SwiftIOPlayground/08LCD/LCD/Package.swift index 91c78e4..7cb32e2 100644 --- a/Examples/SwiftIOPlayground/08LCD/LCD/Package.swift +++ b/Examples/SwiftIOPlayground/08LCD/LCD/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "LCD", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/08LCD/Rainbow/Package.swift b/Examples/SwiftIOPlayground/08LCD/Rainbow/Package.swift index 1a400a4..a7b6054 100644 --- a/Examples/SwiftIOPlayground/08LCD/Rainbow/Package.swift +++ b/Examples/SwiftIOPlayground/08LCD/Rainbow/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "Rainbow", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/08LCD/ScrollEffect/Package.swift b/Examples/SwiftIOPlayground/08LCD/ScrollEffect/Package.swift index 56edebd..6cbc7f3 100644 --- a/Examples/SwiftIOPlayground/08LCD/ScrollEffect/Package.swift +++ b/Examples/SwiftIOPlayground/08LCD/ScrollEffect/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "ScrollEffect", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/09Speaker/MusicPlayer/Package.swift b/Examples/SwiftIOPlayground/09Speaker/MusicPlayer/Package.swift index 18af9fd..a748cce 100644 --- a/Examples/SwiftIOPlayground/09Speaker/MusicPlayer/Package.swift +++ b/Examples/SwiftIOPlayground/09Speaker/MusicPlayer/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "MusicPlayer", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/09Speaker/Speaker/Package.swift b/Examples/SwiftIOPlayground/09Speaker/Speaker/Package.swift index 5737f34..754f42e 100644 --- a/Examples/SwiftIOPlayground/09Speaker/Speaker/Package.swift +++ b/Examples/SwiftIOPlayground/09Speaker/Speaker/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "Speaker", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/10UART/RemoteLEDSwitch/Button/Package.swift b/Examples/SwiftIOPlayground/10UART/RemoteLEDSwitch/Button/Package.swift index a65c1a3..0e73523 100644 --- a/Examples/SwiftIOPlayground/10UART/RemoteLEDSwitch/Button/Package.swift +++ b/Examples/SwiftIOPlayground/10UART/RemoteLEDSwitch/Button/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "Button", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/10UART/RemoteLEDSwitch/LED/Package.swift b/Examples/SwiftIOPlayground/10UART/RemoteLEDSwitch/LED/Package.swift index 1814674..e63e88d 100644 --- a/Examples/SwiftIOPlayground/10UART/RemoteLEDSwitch/LED/Package.swift +++ b/Examples/SwiftIOPlayground/10UART/RemoteLEDSwitch/LED/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "LED", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/10UART/SerialEcho/Package.swift b/Examples/SwiftIOPlayground/10UART/SerialEcho/Package.swift index 0ab3dcd..835cc84 100644 --- a/Examples/SwiftIOPlayground/10UART/SerialEcho/Package.swift +++ b/Examples/SwiftIOPlayground/10UART/SerialEcho/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "SerialEcho", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/10UART/SerialLEDSwitch/Package.swift b/Examples/SwiftIOPlayground/10UART/SerialLEDSwitch/Package.swift index 270baf8..29cafef 100644 --- a/Examples/SwiftIOPlayground/10UART/SerialLEDSwitch/Package.swift +++ b/Examples/SwiftIOPlayground/10UART/SerialLEDSwitch/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "SerialLEDSwitch", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/11WiFi/JoiningWiFi/Package.swift b/Examples/SwiftIOPlayground/11WiFi/JoiningWiFi/Package.swift index 5c228cd..3c0e234 100644 --- a/Examples/SwiftIOPlayground/11WiFi/JoiningWiFi/Package.swift +++ b/Examples/SwiftIOPlayground/11WiFi/JoiningWiFi/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "JoiningWiFi", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/11WiFi/TemperatureDataLogger/Package.swift b/Examples/SwiftIOPlayground/11WiFi/TemperatureDataLogger/Package.swift index 59114ec..4619a4f 100644 --- a/Examples/SwiftIOPlayground/11WiFi/TemperatureDataLogger/Package.swift +++ b/Examples/SwiftIOPlayground/11WiFi/TemperatureDataLogger/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "TemperatureDataLogger", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/12FileSystem/Album/Package.swift b/Examples/SwiftIOPlayground/12FileSystem/Album/Package.swift index 7995b97..863a49d 100644 --- a/Examples/SwiftIOPlayground/12FileSystem/Album/Package.swift +++ b/Examples/SwiftIOPlayground/12FileSystem/Album/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "Album", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/12FileSystem/ReadingFiles/Package.swift b/Examples/SwiftIOPlayground/12FileSystem/ReadingFiles/Package.swift index 777024a..057147e 100644 --- a/Examples/SwiftIOPlayground/12FileSystem/ReadingFiles/Package.swift +++ b/Examples/SwiftIOPlayground/12FileSystem/ReadingFiles/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "ReadingFiles", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - // .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + // .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/12FileSystem/WritingCSVFile/Package.swift b/Examples/SwiftIOPlayground/12FileSystem/WritingCSVFile/Package.swift index d7b60ad..27d53a9 100644 --- a/Examples/SwiftIOPlayground/12FileSystem/WritingCSVFile/Package.swift +++ b/Examples/SwiftIOPlayground/12FileSystem/WritingCSVFile/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "WritingCSVFile", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/13MoreProjects/FallingSand/Package.swift b/Examples/SwiftIOPlayground/13MoreProjects/FallingSand/Package.swift index 1a44177..61bd98d 100644 --- a/Examples/SwiftIOPlayground/13MoreProjects/FallingSand/Package.swift +++ b/Examples/SwiftIOPlayground/13MoreProjects/FallingSand/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "FallingSand", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/13MoreProjects/LifeGame/Package.swift b/Examples/SwiftIOPlayground/13MoreProjects/LifeGame/Package.swift index dddd828..859dcc4 100644 --- a/Examples/SwiftIOPlayground/13MoreProjects/LifeGame/Package.swift +++ b/Examples/SwiftIOPlayground/13MoreProjects/LifeGame/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "LifeGame", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/13MoreProjects/MorseCode/Package.swift b/Examples/SwiftIOPlayground/13MoreProjects/MorseCode/Package.swift index 7b6cc68..c55db4b 100644 --- a/Examples/SwiftIOPlayground/13MoreProjects/MorseCode/Package.swift +++ b/Examples/SwiftIOPlayground/13MoreProjects/MorseCode/Package.swift @@ -7,8 +7,8 @@ let package = Package( name: "MorseCode", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/13MoreProjects/MovingBall/Package.swift b/Examples/SwiftIOPlayground/13MoreProjects/MovingBall/Package.swift index f48258a..855d1a9 100644 --- a/Examples/SwiftIOPlayground/13MoreProjects/MovingBall/Package.swift +++ b/Examples/SwiftIOPlayground/13MoreProjects/MovingBall/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "MovingBall", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/13MoreProjects/Pong/Package.swift b/Examples/SwiftIOPlayground/13MoreProjects/Pong/Package.swift index 70269f4..c04e20b 100644 --- a/Examples/SwiftIOPlayground/13MoreProjects/Pong/Package.swift +++ b/Examples/SwiftIOPlayground/13MoreProjects/Pong/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "Pong", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/13MoreProjects/Prank/Package.swift b/Examples/SwiftIOPlayground/13MoreProjects/Prank/Package.swift index 3ca2e24..b39b3d4 100644 --- a/Examples/SwiftIOPlayground/13MoreProjects/Prank/Package.swift +++ b/Examples/SwiftIOPlayground/13MoreProjects/Prank/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "Prank", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/13MoreProjects/Snake/Package.swift b/Examples/SwiftIOPlayground/13MoreProjects/Snake/Package.swift index abc18f2..0439370 100644 --- a/Examples/SwiftIOPlayground/13MoreProjects/Snake/Package.swift +++ b/Examples/SwiftIOPlayground/13MoreProjects/Snake/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "Snake", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Examples/SwiftIOPlayground/13MoreProjects/TicTacToe/Package.swift b/Examples/SwiftIOPlayground/13MoreProjects/TicTacToe/Package.swift index 275b9da..bf7e994 100644 --- a/Examples/SwiftIOPlayground/13MoreProjects/TicTacToe/Package.swift +++ b/Examples/SwiftIOPlayground/13MoreProjects/TicTacToe/Package.swift @@ -7,9 +7,9 @@ let package = Package( name: "TicTacToe", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"), - .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"), + .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite.