Skip to content

Commit 800341f

Browse files
committed
Update for MadGraphics
Signed-off-by: Andy Liu <andy@madmachine.io>
1 parent be3aaa8 commit 800341f

94 files changed

Lines changed: 400 additions & 388 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ name: build
44
on:
55
push:
66
branches:
7-
- develop
87
- 'feature/**'
98
- 'fix/**'
109
paths:

Examples/MakerKit/Mission10_Humiture_Sensor/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ let package = Package(
55
name: "Mission10_Humiture_Sensor",
66
dependencies: [
77
// Dependencies declare other packages that this package depends on.
8-
.package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"),
9-
.package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"),
8+
.package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"),
9+
.package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"),
1010
],
1111
targets: [
1212
// Targets are the basic building blocks of a package. A target can define a module or a test suite.

Examples/MakerKit/Mission11_Reproduce_Mission10/Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ let package = Package(
55
name: "Mission11_Reproduce_Mission10",
66
dependencies: [
77
// Dependencies declare other packages that this package depends on.
8-
.package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"),
9-
.package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"),
10-
.package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"),
8+
.package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"),
9+
.package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"),
10+
.package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "main"),
1111
],
1212
targets: [
1313
// Targets are the basic building blocks of a package. A target can define a module or a test suite.

Examples/MakerKit/Mission12_Buzzer_Music/Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ let package = Package(
55
name: "Mission12_Buzzer_Music",
66
dependencies: [
77
// Dependencies declare other packages that this package depends on.
8-
.package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"),
9-
.package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"),
10-
.package(url: "https://github.com/madmachineio/PWMTone.git", branch: "develop"),
8+
.package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"),
9+
.package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"),
10+
.package(url: "https://github.com/madmachineio/PWMTone.git", branch: "main"),
1111
],
1212
targets: [
1313
// Targets are the basic building blocks of a package. A target can define a module or a test suite.

Examples/MakerKit/Mission1_Blink/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ let package = Package(
55
name: "Mission1_Blink",
66
dependencies: [
77
// Dependencies declare other packages that this package depends on.
8-
.package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"),
9-
.package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"),
8+
.package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"),
9+
.package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"),
1010
],
1111
targets: [
1212
// Targets are the basic building blocks of a package. A target can define a module or a test suite.

Examples/MakerKit/Mission2_RGB_LED/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ let package = Package(
55
name: "Mission2_RGB_LED",
66
dependencies: [
77
// Dependencies declare other packages that this package depends on.
8-
.package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"),
9-
.package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"),
8+
.package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"),
9+
.package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"),
1010
],
1111
targets: [
1212
// Targets are the basic building blocks of a package. A target can define a module or a test suite.

Examples/MakerKit/Mission3_Push_Button/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ let package = Package(
55
name: "Mission3_Push_Button",
66
dependencies: [
77
// Dependencies declare other packages that this package depends on.
8-
.package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"),
9-
.package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"),
8+
.package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"),
9+
.package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"),
1010
],
1111
targets: [
1212
// Targets are the basic building blocks of a package. A target can define a module or a test suite.

Examples/MakerKit/Mission4_Potentiometer_RGB/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ let package = Package(
55
name: "Mission4_Potentiometer_RGB",
66
dependencies: [
77
// Dependencies declare other packages that this package depends on.
8-
.package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"),
9-
.package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"),
8+
.package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"),
9+
.package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"),
1010
],
1111
targets: [
1212
// Targets are the basic building blocks of a package. A target can define a module or a test suite.

Examples/MakerKit/Mission5_Buzzer/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ let package = Package(
55
name: "Mission5_Buzzer",
66
dependencies: [
77
// Dependencies declare other packages that this package depends on.
8-
.package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"),
9-
.package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"),
8+
.package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"),
9+
.package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"),
1010
],
1111
targets: [
1212
// Targets are the basic building blocks of a package. A target can define a module or a test suite.

Examples/MakerKit/Mission6_Seven_Segment_Display/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ let package = Package(
55
name: "Mission6_Seven_Segment_Display",
66
dependencies: [
77
// Dependencies declare other packages that this package depends on.
8-
.package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"),
9-
.package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"),
8+
.package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "main"),
9+
.package(url: "https://github.com/madmachineio/MadBoards.git", branch: "main"),
1010
],
1111
targets: [
1212
// Targets are the basic building blocks of a package. A target can define a module or a test suite.

0 commit comments

Comments
 (0)